The nsIDOMHTMLSourceElement
interface is the DOM interface to the source
child of the audio
and video
media elements in HTML.
Please add a summary to this article.
Last changed in Gecko 1.9.1.2
Inherits from: nsIDOMHTMLElement
The source
element allows authors to specify multiple media resources for media elements. It does not specify anything on its own.
Attributes
Attribute | Type | Description |
src |
DOMString |
The src attribute gives the address of the media resource. The value must be a valid URL. This attribute must be present. Note that dynamically manipulating this value after the page has loaded has no effect on the containing element; instead, change the src attribute of that element (audio or video ) instead. |
type |
DOMString |
The |
media Unimplemented |
DOMString |
The media attribute gives the intended media type of the media resource, to help the user agent determine if this media resource is useful to the user before fetching it. Its value must be a valid media query. |
Example
<video controls> <source src="foo.webm" type="video/webm; codecs="vp9, opus""> Your browser does not support the <code>video</code> element. </video>
This example specifies that a video object with playback controls should be drawn, playing the file "foo.ogg". The type is specified as "video/ogg", and the source
element also specifies that the video file uses the Dirac and Speex codecs.
See also
- Media elements (HTML 5 specification, editor's draft)
video
audio
- Using audio and video in Firefox
- Media formats supported by the audio and video elements