Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 982447 of Using HTML5 audio and video

  • Revision slug: Web/Guide/HTML/Using_HTML5_audio_and_video
  • Revision title: Using HTML5 audio and video
  • Revision id: 982447
  • Created:
  • Creator: +++AS
  • Is current revision? No
  • Comment

Revision Content

HTML5 introduces built-in media support via the {{ HTMLElement("audio") }} and {{ HTMLElement("video") }} elements, offering the ability to easily embed media into HTML documents.

Embedding media

Embedding media in your HTML document is trivial:

<video src="https://v2v.cc/~j/theora_testsuite/320x240.ogg" controls>
  Your browser does not support the <code>video</code> element.
</video>

This example plays a sample video, with playback controls, from the Theora web site.

Here is an example for embedding audio into your HTML document

<audio src="/test/audio.ogg">
<p>Your browser does not support the <code>audio</code> element.</p>
</audio>

The src attribute can be a URL of the audio file or the path to the file on the local system.

<audio src="audio.ogg" controls autoplay loop>
<p>Your browser does not support the <code>audio</code> element </p>
</audio>

This code example uses attributes of the {{ HTMLElement("audio") }} element:

  • controls : Displays the standard HTML5 controls for the audio on the web page.
  • autoplay : Makes the audio play automatically.
  • loop : Make the audio repeat (loop) automatically.
<audio src="audio.mp3" preload="auto" controls></audio>

The preload attribute is used in the audio element for buffering large files. It can take one of 3 values:

  • "none" does not buffer the file
  • "auto" buffers the media file
  • "metadata" buffers only the metadata for the file

Multiple source files can be specified using the {{ HTMLElement("source") }} element in order to provide video or audio encoded in different formats for different browsers. For instance:

<video controls>
  <source src="foo.ogg" type="video/ogg">
  <source src="foo.mp4" type="video/mp4">
  Your browser does not support the <code>video</code> element.
</video>

This plays the Ogg file in browsers supporting the Ogg format. If the browser doesn't support Ogg, the browser uses the MPEG-4 file. See also the list of media formats supported by the audio and video elements in different browsers.

You may also specify which codecs the media file requires; this allows the browser to make even more intelligent decisions:

<video controls>
  <source src="foo.ogg" type="video/ogg; codecs=dirac, speex">
  Your browser does not support the <code>video</code> element.
</video>

Here, we specify that the video uses the Dirac and Speex codecs. If the browser supports Ogg, but not the specified codecs, the video will not load.

If the type attribute isn't specified, the media's type is retrieved from the server and checked to see if the browser can handle it; if it can't be rendered, the next source is checked. If none of the specified source elements can be used, an error event is dispatched to the video element. If the type attribute is specified, it's compared against the types the browser can play, and if it's not recognized, the server doesn't even get queried; instead, the next source is checked at once.

See Media events for a complete list of events associated with media playback. For details on media formats supported by different browsers, see Media formats supported by the audio and video elements.

Controlling media playback

Once you've embedded media into your HTML document using the new elements, you can programmatically control them from JavaScript code. For example, to start (or restart) playback, you can do this:

var v = document.getElementsByTagName("video")[0];
v.play();

The first line fetches the first video element in the document, and the second calls the element's play() method, as defined in the {{ interface("nsIDOMHTMLMediaElement") }} interface that is used to implement the media elements.

Controlling an HTML5 audio player to play, pause, increase and decrease volume using some Javascript is straightforward.

<audio id="demo" src="audio.mp3"></audio>
<div>
  <button onclick="document.getElementById('demo').play()">Play the Audio</button>
  <button onclick="document.getElementById('demo').pause()">Pause the Audio</button>
  <button onclick="document.getElementById('demo').volume+=0.1">Increase Volume</button>
  <button onclick="document.getElementById('demo').volume-=0.1">Decrease Volume</button>
</div> 

Stopping the download of media

While stopping the playback of media is as easy as calling the element's pause() method, the browser keeps downloading the media until the media element is disposed of through garbage collection.

Here's a trick that stops the download at once:

var mediaElement = document.getElementById("myMediaElementID");
mediaElement.pause();
mediaElement.src='';
//or
mediaElement.removeAttribute("src"); 

By removing the media element's src attribute (or setting it to an empty string—it may depend on the browser), you destroy the element's internal decoder, which stops the network download. The spec is quite unclear on the removeAttribute() scenario and setting a <video> 'src' attribute to an empty string can cause an unwanted request (Mozilla Firefox 22).

 

Seeking through media

Media elements provide support for moving the current playback position to specific points in the media's content. This is done by setting the value of the currentTime property on the element; see {{ domxref("HTMLMediaElement") }} for further details on the element's properties. Simply set the value to the time, in seconds, at which you want playback to continue.

You can use the element's seekable property to determine the ranges of the media that are currently available for seeking to. This returns a {{ domxref("TimeRanges") }} object listing the ranges of times that you can seek to.

var mediaElement = document.getElementById('mediaElementID');
mediaElement.seekable.start(0);  // Returns the starting time (in seconds)
mediaElement.seekable.end(0);    // Returns the ending time (in seconds)
mediaElement.currentTime = 122; // Seek to 122 seconds
mediaElement.played.end(0);      // Returns the number of seconds the browser has played

Specifying playback range

When specifying the URI of media for an {{ HTMLElement("audio") }} or {{ HTMLElement("video") }} element, you can optionally include additional information to specify the portion of the media to play. To do this, append a hash mark ("#") followed by the media fragment description.

A time range is specified using the syntax:

#t=[starttime][,endtime]

The time can be specified as a number of seconds (as a floating-point value) or as an hours/minutes/seconds time separated with colons (such as 2:05:01 for 2 hours, 5 minutes, and 1 second).

A few examples:

https://foo.com/video.ogg#t=10,20
Specifies that the video should play the range 10 seconds through 20 seconds.
https://foo.com/video.ogg#t=,10.5
Specifies that the video should play from the beginning through 10.5 seconds.
https://foo.com/video.ogg#t=,02:00:00
Specifies that the video should play from the beginning through two hours.
https://foo.com/video.ogg#t=60
Specifies that the video should start playing at 60 seconds and play through the end of the video.

The playback range portion of the media element URI specification was added to Gecko 9.0 {{ geckoRelease("9.0") }}. At this time, this is the only part of the Media Fragments URI specification implemented by Gecko, and it can only be used when specifying the source for media elements, and not in the address bar.

Fallback options

HTML included between, for example, the opening and closing tags of media elements is processed by browsers that don't support HTML5 media. You can take advantage of this fact to provide alternative fallback media for those browsers.

This section provides two possible fallback options for video. In each case, if the browser supports HTML5 video, that is used; otherwise, the fallback option is used.

Using Flash

You can use Flash to play a Flash format movie if the {{ HTMLElement("video") }} element isn't supported:

<video src="video.ogv" controls>
    <object data="flvplayer.swf" type="application/x-shockwave-flash">
      <param value="flvplayer.swf" name="movie"/>
    </object>
</video>

Note that you shouldn't include classid in the object tag in order to be compatible with browsers other than Internet Explorer.

Playing Ogg videos using a Java applet

There's a Java applet called Cortado that you can use as a fallback to play Ogg videos in browsers that have Java support but don't support HTML5 video:

<video src="my_ogg_video.ogg" controls width="320" height="240">
  <object type="application/x-java-applet" width="320" height="240">
     <param name="archive" value="cortado.jar">
     <param name="code" value="com.fluendo.player.Cortado.class">
     <param name="url" value="my_ogg_video.ogg">
     <p>You need to install Java to play this file.</p>
  </object>
</video>

If you do not create an alternate child element of the cortado object element, such as the {{ HTMLElement("p") }} element above, FireFox 3.5 installations that handle the video natively but do not have Java installed will incorrectly inform the user that they need to install a plugin to view content on the page.

{{ h2_gecko_minversion("Error handling", "2.0") }}

Starting in Gecko 2.0 {{ geckoRelease("2.0") }}, error handling has been revised to match the latest version of the HTML5 specification. Instead of the error event being dispatched to the media element itself, it now gets delivered to the child {{ HTMLElement("source") }} elements corresponding to the sources resulting in the error.

This lets you detect which sources failed to load, which may be useful. Consider this HTML:

<video>
<source id="mp4_src"
  src="video.mp4"
  type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
</source>
<source id="3gp_src"
  src="video.3gp"
  type='video/3gpp; codecs="mp4v.20.8, samr"'>
</source>
<source id="ogg_src"
  src="video.ogv"
  type='video/ogg; codecs="theora, vorbis"'>
</source>
</video>

Since Firefox doesn't support MP4 and 3GP due to their patent-encumbered nature, the {{ HTMLElement("source") }} elements with the IDs "mp4_src" and "3gp_src" will receive error events before the Ogg resource is loaded. The sources are tried in the order in which they appear, and once one loads successfully, the remaining sources aren't tried at all.

Detecting when no sources have loaded

To detect that all child {{ HTMLElement("source") }} elements have failed to load, check the value of the media element's networkState attribute. If this is HTMLMediaElement.NETWORK_NO_SOURCE, you know that all the sources failed to load.

If at that point you add another source by inserting a new {{ HTMLElement("source") }} element as a child of the media element, Gecko attempts to load the specified resource.

Showing fallback content when no source could be decoded

Another way to show the fallback content of a video when none of the sources could be decoded in the current browser is to add an error handler on the last source element. Then you can replace the video with its fallback content:

<video controls>
  <source src="dynamicsearch.mp4" type="video/mp4"></source>
  <a href="dynamicsearch.mp4">
    <img src="dynamicsearch.jpg" alt="Dynamic app search in Firefox OS">
  </a>
  <p>Click image to play a video demo of dynamic app search</p>
</video>

var v = document.querySelector('video'),
    sources = v.querySelectorAll('source'),
    lastsource = sources[sources.length-1];
lastsource.addEventListener('error', function(ev) {
  var d = document.createElement('div');
  d.innerHTML = v.innerHTML;
  v.parentNode.replaceChild(d, v);
}, false);

See also

Revision Source

<p>HTML5 introduces built-in media support via the {{ HTMLElement("audio") }} and {{ HTMLElement("video") }} elements, offering the ability to easily embed media into HTML documents.</p>

<h2 id="Embedding_media">Embedding media</h2>

<p>Embedding media in your HTML document is trivial:</p>

<div style="overflow: hidden;">
<pre class="brush: html">
&lt;video src="https://v2v.cc/~j/theora_testsuite/320x240.ogg" controls&gt;
  Your browser does not support the &lt;code&gt;video&lt;/code&gt; element.
&lt;/video&gt;</pre>

<p>This example plays a sample video, with playback controls, from the Theora web site.</p>

<p>Here is an example for embedding <em>audio</em> into your HTML document</p>

<pre class="brush: html">
&lt;audio src="/test/audio.ogg"&gt;
&lt;p&gt;Your browser does not support the &lt;code&gt;audio&lt;/code&gt; element.&lt;/p&gt;
&lt;/audio&gt;</pre>
</div>

<p>The <code>src</code> attribute can be a URL of the audio file or the path to the file on the local system.</p>

<div style="overflow: hidden;">
<pre class="brush: html">
&lt;audio src="audio.ogg" controls autoplay loop&gt;
&lt;p&gt;Your browser does not support the &lt;code&gt;audio&lt;/code&gt; element &lt;/p&gt;
&lt;/audio&gt;</pre>
</div>

<p>This code example uses attributes of the {{ HTMLElement("audio") }} element:</p>

<ul>
 <li><code>controls</code> : Displays the standard HTML5 controls for the audio on the web page.</li>
 <li><code>autoplay</code> : Makes the audio play automatically.</li>
 <li><code>loop</code> : Make the audio repeat (loop) automatically.</li>
</ul>

<div style="overflow: hidden;">
<pre class="brush: html">
&lt;audio src="audio.mp3" preload="auto" controls&gt;&lt;/audio&gt;</pre>
</div>

<p>The <code>preload</code> attribute is used in the audio element for buffering large files. It can take one of 3 values:</p>

<ul>
 <li><code>"none"</code> does not buffer the file</li>
 <li><code>"auto"</code> buffers the media file</li>
 <li><code>"metadata"</code> buffers only the metadata for the file</li>
</ul>

<p>Multiple source files can be specified using the {{ HTMLElement("source") }} element in order to provide video or audio encoded in different formats for different browsers. For instance:</p>

<pre class="brush: html">
&lt;video controls&gt;
  &lt;source src="foo.ogg" type="video/ogg"&gt;
  &lt;source src="foo.mp4" type="video/mp4"&gt;
  Your browser does not support the &lt;code&gt;video&lt;/code&gt; element.
&lt;/video&gt;
</pre>

<p>This plays the Ogg file in browsers supporting the Ogg format. If the browser doesn't support Ogg, the browser uses the MPEG-4 file. See also the list of <a href="/en-US/docs/Media_formats_supported_by_the_audio_and_video_elements" title="Media formats supported by the audio and video elements">media formats supported by the audio and video elements</a> in different browsers.</p>

<p>You may also specify which codecs the media file requires; this allows the browser to make even more intelligent decisions:</p>

<pre class="brush: html">
&lt;video controls&gt;
  &lt;source src="foo.ogg" type="video/ogg; codecs=dirac, speex"&gt;
  Your browser does not support the &lt;code&gt;video&lt;/code&gt; element.
&lt;/video&gt;</pre>

<p>Here, we specify that the video uses the Dirac and Speex codecs. If the browser supports Ogg, but not the specified codecs, the video will not load.</p>

<p>If the <code>type</code> attribute isn't specified, the media's type is retrieved from the server and checked to see if the browser can handle it; if it can't be rendered, the next <code>source</code> is checked. If none of the specified <code>source</code> elements can be used, an <code>error</code> event is dispatched to the <code>video</code> element. If the <code>type</code> attribute is specified, it's compared against the types the browser can play, and if it's not recognized, the server doesn't even get queried; instead, the next <code>source</code> is checked at once.</p>

<p>See <a href="/en-US/docs/DOM/Media_events" title="https://developer.mozilla.org/en/DOM/Media_events">Media events</a> for a complete list of events associated with media playback. For details on media formats supported by different browsers, see <a href="/en-US/docs/Media_formats_supported_by_the_audio_and_video_elements" title="Media formats supported by the audio and video elements">Media formats supported by the audio and video elements</a>.</p>

<h2 id="Controlling_media_playback">Controlling media playback</h2>

<p>Once you've embedded media into your HTML document using the new elements, you can programmatically control them from JavaScript code. For example, to start (or restart) playback, you can do this:</p>

<pre class="brush: js">
var v = document.getElementsByTagName("video")[0];
v.play();
</pre>

<p>The first line fetches the first video element in the document, and the second calls the element's <a href="/en-US/docs/XPCOM_Interface_Reference/NsIDOMHTMLMediaElement#play()" title="nsIDOMHTMLMediaElement#play()"><code>play()</code></a> method, as defined in the {{ interface("nsIDOMHTMLMediaElement") }} interface that is used to implement the media elements.</p>

<p>Controlling an HTML5 audio player to play, pause, increase and decrease volume using some Javascript is straightforward.</p>

<pre class="brush: html">
&lt;audio id="demo" src="audio.mp3"&gt;&lt;/audio&gt;
&lt;div&gt;
  &lt;button onclick="document.getElementById('demo').play()"&gt;Play the Audio&lt;/button&gt;
  &lt;button onclick="document.getElementById('demo').pause()"&gt;Pause the Audio&lt;/button&gt;
  &lt;button onclick="document.getElementById('demo').volume+=0.1"&gt;Increase Volume&lt;/button&gt;
  &lt;button onclick="document.getElementById('demo').volume-=0.1"&gt;Decrease Volume&lt;/button&gt;
&lt;/div&gt; 
</pre>

<h2 id="Stopping_the_download_of_media">Stopping the download of media</h2>

<p>While stopping the playback of media is as easy as calling the element's pause() method, the browser keeps downloading the media until the media element is disposed of through garbage collection.</p>

<p>Here's a trick that stops the download at once:</p>

<pre class="brush: js">
var mediaElement = document.getElementById("myMediaElementID");
mediaElement.pause();
mediaElement.src='';
//or
mediaElement.<code>removeAttribute("src");</code> 
</pre>

<p>By removing the media element's <code>src</code> attribute (or setting it to an empty string—it may depend on the browser), you destroy the element's internal decoder, which stops the network download. The spec is quite unclear on the removeAttribute() scenario and setting a &lt;video&gt; 'src' attribute to an empty string can cause an unwanted request (Mozilla Firefox 22).</p>

<p>&nbsp;</p>

<h2 id="Seeking_through_media">Seeking through media</h2>

<p>Media elements provide support for moving the current playback position to specific points in the media's content. This is done by setting the value of the <code>currentTime</code> property on the element; see {{ domxref("HTMLMediaElement") }} for further details on the element's properties. Simply set the value to the time, in seconds, at which you want playback to continue.</p>

<p>You can use the element's <code>seekable</code> property to determine the ranges of the media that are currently available for seeking to. This returns a {{ domxref("TimeRanges") }} object listing the ranges of times that you can seek to.</p>

<pre class="brush: js">
var mediaElement = document.getElementById('mediaElementID');
mediaElement.seekable.start(0);  // Returns the starting time (in seconds)
mediaElement.seekable.end(0);    // Returns the ending time (in seconds)
mediaElement.currentTime = 122; // Seek to 122 seconds
mediaElement.played.end(0);      // Returns the number of seconds the browser has played
</pre>

<h2 id="Specifying_playback_range">Specifying playback range</h2>

<p>When specifying the URI of media for an {{ HTMLElement("audio") }} or {{ HTMLElement("video") }} element, you can optionally include additional information to specify the portion of the media to play. To do this, append a hash mark ("#") followed by the media fragment description.</p>

<p>A time range is specified using the syntax:</p>

<pre>
#t=[starttime][,endtime]</pre>

<p>The time can be specified as a number of seconds (as a floating-point value) or as an hours/minutes/seconds time separated with colons (such as 2:05:01 for 2 hours, 5 minutes, and 1 second).</p>

<p>A few examples:</p>

<dl>
 <dt><span class="nowiki">https://foo.com/video.ogg#t=10,20</span></dt>
 <dd>Specifies that the video should play the range 10 seconds through 20 seconds.</dd>
 <dt><span class="nowiki">https://foo.com/video.ogg#t=,10.5</span></dt>
 <dd>Specifies that the video should play from the beginning through 10.5 seconds.</dd>
 <dt><span class="nowiki">https://foo.com/video.ogg#t=,02:00:00</span></dt>
 <dd>Specifies that the video should play from the beginning through two hours.</dd>
 <dt><span class="nowiki">https://foo.com/video.ogg#t=60</span></dt>
 <dd>Specifies that the video should start playing at 60 seconds and play through the end of the video.</dd>
</dl>

<div class="note">
<p>The playback range portion of the media element URI specification was added to Gecko 9.0 {{ geckoRelease("9.0") }}. At this time, this is the only part of the <a class="external" href="https://www.w3.org/TR/media-frags/" title="https://www.w3.org/TR/media-frags/">Media Fragments URI specification</a> implemented by Gecko, and it can only be used when specifying the source for media elements, and not in the address bar.</p>
</div>

<h2 id="Fallback_options">Fallback options</h2>

<p>HTML included between, for example, the opening and closing tags of media elements is processed by browsers that don't support HTML5 media. You can take advantage of this fact to provide alternative fallback media for those browsers.</p>

<p>This section provides two possible fallback options for video. In each case, if the browser supports HTML5 video, that is used; otherwise, the fallback option is used.</p>

<h3 id="Using_Flash">Using Flash</h3>

<p>You can use Flash to play a Flash format movie if the {{ HTMLElement("video") }} element isn't supported:</p>

<pre class="brush: html">
&lt;video src="video.ogv" controls&gt;
    &lt;object data="flvplayer.swf" type="application/x-shockwave-flash"&gt;
      &lt;param value="flvplayer.swf" name="movie"/&gt;
    &lt;/object&gt;
&lt;/video&gt;</pre>

<p>Note that you shouldn't include <code>classid</code> in the <code>object</code> tag in order to be compatible with browsers other than Internet Explorer.</p>

<h3 id="Playing_Ogg_videos_using_a_Java_applet">Playing Ogg videos using a Java applet</h3>

<p>There's a Java applet called <a class="external" href="https://maikmerten.livejournal.com/2256.html" title="https://maikmerten.livejournal.com/2256.html">Cortado</a> that you can use as a fallback to play Ogg videos in browsers that have Java support but don't support HTML5 video:</p>

<pre class="brush: html">
&lt;video src="my_ogg_video.ogg" controls width="320" height="240"&gt;
  &lt;object type="application/x-java-applet" width="320" height="240"&gt;
     &lt;param name="archive" value="cortado.jar"&gt;
     &lt;param name="code" value="com.fluendo.player.Cortado.class"&gt;
     &lt;param name="url" value="my_ogg_video.ogg"&gt;
     &lt;p&gt;You need to install Java to play this file.&lt;/p&gt;
  &lt;/object&gt;
&lt;/video&gt;</pre>

<p>If you do not create an alternate child element of the cortado object element, such as the {{ HTMLElement("p") }} element above, FireFox 3.5 installations that handle the video natively but do not have Java installed will incorrectly inform the user that they need to install a plugin to view content on the page.</p>

<p>{{ h2_gecko_minversion("Error handling", "2.0") }}</p>

<p>Starting in Gecko 2.0 {{ geckoRelease("2.0") }}, error handling has been revised to match the latest version of the HTML5 specification. Instead of the <code>error</code> event being dispatched to the media element itself, it now gets delivered to the child {{ HTMLElement("source") }} elements corresponding to the sources resulting in the error.</p>

<p>This lets you detect which sources failed to load, which may be useful. Consider this HTML:</p>

<pre class="brush: html">
&lt;video&gt;
&lt;source id="mp4_src"
  src="video.mp4"
  type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'&gt;
&lt;/source&gt;
&lt;source id="3gp_src"
  src="video.3gp"
  type='video/3gpp; codecs="mp4v.20.8, samr"'&gt;
&lt;/source&gt;
&lt;source id="ogg_src"
  src="video.ogv"
  type='video/ogg; codecs="theora, vorbis"'&gt;
&lt;/source&gt;
&lt;/video&gt;</pre>

<p>Since Firefox doesn't support MP4 and 3GP due to their patent-encumbered nature, the {{ HTMLElement("source") }} elements with the IDs "mp4_src" and "3gp_src" will receive <code>error</code> events before the Ogg resource is loaded. The sources are tried in the order in which they appear, and once one loads successfully, the remaining sources aren't tried at all.</p>

<h3 id="Detecting_when_no_sources_have_loaded">Detecting when no sources have loaded</h3>

<p>To detect that all child {{ HTMLElement("source") }} elements have failed to load, check the value of the media element's <code>networkState</code> attribute. If this is <code>HTMLMediaElement.NETWORK_NO_SOURCE</code>, you know that all the sources failed to load.</p>

<p>If at that point you add another source by inserting a new {{ HTMLElement("source") }} element as a child of the media element, Gecko attempts to load the specified resource.</p>

<h3 id="Showing_fallback_content_when_no_source_could_be_decoded">Showing fallback content when no source could be decoded</h3>

<p>Another way to show the fallback content of a video when none of the sources could be decoded in the current browser is to add an error handler on the last source element. Then you can replace the video with its fallback content:</p>

<pre class="brush: html">
&lt;video controls&gt;
&nbsp; &lt;source src="dynamicsearch.mp4" type="video/mp4"&gt;&lt;/source&gt;
&nbsp; &lt;a href="dynamicsearch.mp4"&gt;
&nbsp;&nbsp;&nbsp; &lt;img src="dynamicsearch.jpg" alt="Dynamic app search in Firefox OS"&gt;
&nbsp; &lt;/a&gt;
&nbsp; &lt;p&gt;Click image to play a video demo of dynamic app search&lt;/p&gt;
&lt;/video&gt;

</pre>

<pre class="brush: js">
var v = document.querySelector('video'),
&nbsp;&nbsp;&nbsp; sources = v.querySelectorAll('source'),
&nbsp;&nbsp;&nbsp; lastsource = sources[sources.length-1];
lastsource.addEventListener('error', function(ev) {
&nbsp; var d = document.createElement('div');
&nbsp; d.innerHTML = v.innerHTML;
&nbsp; v.parentNode.replaceChild(d, v);
}, false);
</pre>

<h2 id="See_also">See also</h2>

<ul>
 <li>The media-related HTML elements: {{ HTMLElement("audio") }}, {{ HTMLElement("video") }}, {{ HTMLElement("source") }};</li>
 <li><a href="/en-US/docs/Manipulating_video_using_canvas" title="Manipulating video using canvas">Manipulating video using canvas</a></li>
 <li><a href="/en-US/docs/Introducing_the_Audio_API_Extension" title="Introducing the Audio API Extension">Introducing the Audio API Extension</a></li>
 <li>{{ interface("nsIDOMHTMLMediaElement") }}</li>
 <li><a href="/en-US/docs/Media_formats_supported_by_the_audio_and_video_elements" title="Media formats supported by the audio and video elements">Media formats supported by the audio and video elements</a></li>
 <li><a class="external" href="https://en.flossmanuals.net/ogg-theora/" title="https://en.flossmanuals.net/ogg-theora/">Theora Cookbook</a></li>
 <li><a class="external" href="https://popcornjs.org/" title="https://popcornjs.org/">Popcorn.js - The HTML5 Media Framework</a></li>
 <li><a class="external" href="https://www.html5video.org/kaltura-html5/" title="https://www.html5video.org/kaltura-html5/">Kaltura Video Library Solution</a>, a JavaScript library (mwEmbed) which supports a seamless fallback with HTML5, VLC Player, Java Cortado and OMTK Flash Vorbis player. (It is used by Wikimedia)</li>
 <li><a class="external" href="https://omtk.org/flash/index.html" title="https://omtk.org/flash/index.html">OMTK - Flash</a>, a Flash library which implements a Vorbis decoder</li>
 <li><a class="external" href="https://www.projekktor.com" title="https://www.projekktor.com">Projekktor Player</a>, a JavaScript wrapper for audio- and video-tags with flash fallback, open source, GPL</li>
 <li><a class="external" href="https://www.theora.org/cortado/" title="https://www.theora.org/cortado/">Applet Cortado</a>, an audio/video playback solution in Java maintained by Xiph.org</li>
 <li><a class="external" href="https://videojs.com" title="Video.js HTML5 Video Player">Video.JS</a>, an open source HTML5 video player and framework.</li>
 <li><a class="external" href="https://mediaelementjs.com/" title="https://mediaelementjs.com/">MediaElement.js</a> - open source HTML5 audio/video framework with a custom Flash shim that mimic HTML5 media API for older browsers.</li>
 <li><a class="external" href="https://www.hdwebplayer.com" title="https://www.hdwebplayer.com">Flv Player</a> - HTML5 fallback support video player</li>
 <li><a href="/en-US/docs/Web/HTML/DASH_Adaptive_Streaming_for_HTML_5_Video" title="/en-US/docs/DASH_Adaptive_Streaming">DASH - Dynamic Adaptive Streaming over HTTP</a> - for HTML5 video</li>
 <li><a href="https://jPlayer.org">jPlayer</a> an open source audio and video libray for jQuery and Zepto</li>
</ul>
Revert to this revision