Skip to content

Instantly share code, notes, and snippets.

@caraya
Created November 8, 2015 23:41
Show Gist options
  • Save caraya/45917c83b6e7c9543f6a to your computer and use it in GitHub Desktop.
Save caraya/45917c83b6e7c9543f6a to your computer and use it in GitHub Desktop.
<video
id="myvideo"
controls="controls"
class="playr_video"
width="640" height="480"
poster="http://media.w3.org/2010/05/sintel/poster.png">
<!--
These are the three sources. This should cover most of
our deployed player base.
-->
<source src="http://media.w3.org/2010/05/sintel/trailer.mp4"
type="video/mp4" />
<source src="http://media.w3.org/2010/05/sintel/trailer.webm"
type="video/webm" />
<source src="http://media.w3.org/2010/05/sintel/trailer.ogv"
type="video/ogg" />
<!--
These are the subtitles tracks one for English and one for Spanish
-->
<track kind="captions" label="English" srclang="en"
src='vtt/sintel.vtt'/>
<track kind="subtitles" label="Espa&ntilde;ol" srclang="es"
src='vtt/sintel-es.vtt'/>
</video>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment