The HTMLMediaElement
interface adds to HTMLElement
the properties and methods needed to support basic media-related capabilities that are common to audio and video. The HTMLVideoElement
and HTMLAudioElement
elements both inherit this interface.
This interface also inherits properties from its ancestors HTMLElement
, Element
, Node
, and EventTarget
.
HTMLMediaElement.audioTracks
AudioTrackList
that lists the AudioTrack
objects contained in the element.HTMLMediaElement.autoplay
Boolean
that reflects the autoplay
HTML attribute, indicating whether playback should automatically begin as soon as enough media is available to do so without interruption. HTMLMediaElement.buffered
Read only
TimeRanges
object that indicates the ranges of the media source that the browser has buffered (if any) at the moment the buffered
property is accessed.HTMLMediaElement.controller
MediaController
object that represents the media controller assigned to the element, or null
if none is assigned.HTMLMediaElement.controls
Boolean
that reflects the controls
HTML attribute, indicating whether user interface items for controlling the resource should be displayed.HTMLMediaElement.controlsList
Read only
DOMTokenList
that helps the user agent select what controls to show on the media element whenever the user agent shows its own set of controls. The DOMTokenList
takes one or more of three possible values: nodownload
, nofullscreen
, and noremoteplayback
.HTMLMediaElement.crossOrigin
DOMString
indicating the CORS setting for this media element.HTMLMediaElement.currentSrc
Read only
DOMString
with the absolute URL of the chosen media resource.HTMLMediaElement.currentTime
double
indicating the current playback time in seconds. Setting this value seeks the media to the new time.HTMLMediaElement.defaultMuted
Boolean
that reflects the muted
HTML attribute, which indicates whether the media element's audio output should be muted by default.HTMLMediaElement.defaultPlaybackRate
double
indicating the default playback rate for the media.HTMLMediaElement.disableRemotePlayback
Boolean
that sets or returns the remote playback state, indicating whether the media element is allowed to have a remote playback UI.HTMLMediaElement.duration
Read only
double
indicating the length of the media in seconds, or 0 if no media data is available.HTMLMediaElement.ended
Read only
Boolean
that indicates whether the media element has finished playing.HTMLMediaElement.error
Read only
MediaError
object for the most recent error, or null
if there has not been an error.HTMLMediaElement.initialTime
Read only
double
that indicates the initial playback position in seconds.HTMLMediaElement.loop
Boolean
that reflects the loop
HTML attribute, which indicates whether the media element should start over when it reaches the end.HTMLMediaElement.mediaGroup
DOMString
that reflects the mediagroup
HTML attribute, which indicates the name of the group of elements it belongs to. A group of media elements shares a common MediaController
.HTMLMediaElement.mediaKeys
Read only
MediaKeys
object or null
. MediaKeys is a set of keys that an associated HTMLMediaElement can use for decryption of media data during playback.HTMLMediaElement.mozAudioCaptured
Read only
Boolean
. Related to audio stream capture.HTMLMediaElement.mozChannels
Read only
double
representing the number of channels in the audio resource (e.g., 2
for stereo).HTMLMediaElement.mozFragmentEnd
double
that provides access to the fragment end time if the media element has a fragment URI for currentSrc
, otherwise it is equal to the media duration.HTMLMediaElement.mozFrameBufferLength
Is a unsigned long
that indicates the number of samples that will be returned in the framebuffer of each MozAudioAvailable
event. This number is a total for all channels, and by default is set to be the number of channels * 1024 (e.g., 2 channels * 1024 samples = 2048 total).
The mozFrameBufferLength
property can be set to a new value for lower latency, larger amounts of data, etc. The size given must be a number between 512 and 16384. Using any other size results in an exception being thrown. The best time to set a new length is after the loadedmetadata event fires, when the audio info is known, but before the audio has started or MozAudioAvailable
events have begun firing.
HTMLMediaElement.mozSampleRate
Read only
double
representing the number of samples per second that will be played. For example, 44100 samples per second is the sample rate used by CD audio.HTMLMediaElement.muted
Boolean
that determines whether audio is muted. true
if the audio is muted and false
otherwise.HTMLMediaElement.networkState
Read only
unsigned short
(enumeration) indicating the current state of fetching the media over the network.HTMLMediaElement.paused
Read only
Boolean
that indicates whether the media element is paused.HTMLMediaElement.playbackRate
double
that indicates the rate at which the media is being played back. HTMLMediaElement.played
Read only
TimeRanges
object that contains the ranges of the media source that the browser has played, if any.HTMLMediaElement.preload
DOMString
that reflects the preload
HTML attribute, indicating what data should be preloaded, if any. Possible values are: none
, metadata
, auto
.HTMLMediaElement.preservesPitch
Boolean
that determines if the pitch of the sound will be preserved. If set to false
, the pitch will adjust to the speed of the audio. This is implemented with prefixes in Firefox (mozPreservesPitch
) and WebKit (webkitPreservesPitch
).HTMLMediaElement.readyState
Read only
unsigned short
(enumeration) indicating the readiness state of the media.HTMLMediaElement.seekable
Read only
TimeRanges
object that contains the time ranges that the user is able to seek to, if any.HTMLMediaElement.seeking
Read only
Boolean
that indicates whether the media is in the process of seeking to a new position.HTMLMediaElement.sinkId
Read only
DOMString
that is the unique ID of the audio device delivering output, or an empty string if it is using the user agent default. This ID should be one of the MediaDeviceInfo.deviceid
values returned from MediaDevices.enumerateDevices()
, id-multimedia
, or id-communications
.HTMLMediaElement.src
DOMString
that reflects the src
HTML attribute, which contains the URL of a media resource to use.HTMLMediaElement.srcObject
MediaStream
representing the media to play or that has played in the current HTMLMediaElement
, or null
if not assigned.HTMLMediaElement.textTracks
Read only
TextTrack
objects contained in the element.HTMLMediaElement.videoTracks
Read only
VideoTrack
objects contained in the element. Gecko supports only single track playback, and the parsing of tracks' metadata is only available for media with the Ogg container format.
HTMLMediaElement.volume
double
indicating the audio volume, from 0.0 (silent) to 1.0 (loudest).HTMLMediaElement.onmozinterruptbegin
EventHandler
called when the media element is interrupted because of the Audio Channel manager. This was Firefox-specific, having been implemented for Firefox OS, and was removed in Firefox 55.HTMLMediaElement.onmozinterruptend
EventHandler
called when the interruption is concluded. This was Firefox-specific, having been implemented for Firefox OS, and was removed in Firefox 55.HTMLMediaElement.onencrypted
EventHandler
called when the media is encrypted.HTMLMediaElement.onwaitingforkey
EventHandler
called when playback is blocked while waiting for an encryption key.This interface also inherits methods from its ancestors HTMLElement
, Element
, Node
, and EventTarget
.
HTMLMediaElement.addTextTrack()
HTMLMediaElement.captureStream()
MediaStream
, captures a stream of the media content.HTMLMediaElement.canPlayType()
HTMLMediaElement.fastSeek()
HTMLMediaElement.load()
preload
attribute. This method can be useful for releasing resources after any src
attribute and source
element descendants have been removed. Otherwise, it is usually unnecessary to use this method, unless required to rescan source
element children after dynamic changes.HTMLMediaElement.mozCaptureStream()
HTMLMediaElement.mozCaptureStreamUntilEnded()
HTMLMediaElement.mozGetMetadata()
Object
, which contains properties that represent metadata from the playing media resource as {key: value}
pairs. A separate copy of the data is returned each time the method is called. This method must be called after the loadedmetadata event fires.HTMLMediaElement.mozLoadFrom()
load()
except that instead of running the normal resource selection algorithm, the source is simply set to the other
element's currentSrc
. This is optimized so this element gets access to all of the other
element's cached and buffered data; in fact, the two elements share downloaded data, so data downloaded by either element is available to both.HTMLMediaElement.pause()
HTMLMediaElement.play()
HTMLMediaElement.seekToNextFrame()
HTMLMediaElement.setMediaKeys()
Promise
. Sets the MediaKeys
keys to use when decrypting media during playback.HTMLMediaElement.setSinkId()
Promise
. This only works when the application is authorized to use the specified device.Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLMediaElement' in that specification. | Living Standard | No change from HTML5 |
HTML5 The definition of 'HTMLMediaElement' in that specification. | Recommendation | Initial definition. |
Encrypted Media Extensions The definition of 'Encrypted Media Extensions' in that specification. | Recommendation | Adds MediaKeys , MediaEncryptedEvent , setMediaKeys , onencrypted , and onwaitingforkey . |
Media Capture and Streams The definition of 'HTMLMediaElement' in that specification. | Editor's Draft | Adds sinkId and setSinkId() , and captureStream() . |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 3.5 (1.9.1) [1] | 9 | (Yes) | ? |
buffered property | (Yes) | (Yes) | 4.0 (2.0) | 9 | ? | ? |
defaultMuted property | (Yes) | (Yes) | 11.0 (11.0) | ? | ? | ? |
loop property | (Yes) | (Yes) | 11.0 (11.0) | 9 | ? | ? |
seekable property | (Yes) | (Yes) | 8.0 (8.0) | 9 | ? | ? |
defaultPlaybackRate property | (Yes) | (Yes) | 20.0 (20.0) | 9 | ? | ? |
playbackRate property | (Yes) | (Yes) | 20.0 (20.0) | 9 | ? | ? |
preservesPitch property
| (Yes)webkit | No support | 20.0 (20.0)moz | No support | No support | No support |
preload property | (Yes) | (Yes) | 4.0 (2.0)[2] | ? | ? | ? |
played property | (Yes) | (Yes) | 15.0 (15.0) | ? | ? | ? |
crossOrigin property | (Yes) | (Yes) |
12.0 (12.0)[3] 22.0 (22.0) | ? | ? | ? |
mozAudioChannelType property | No support | No support | No support | No support | No support | No support |
mozChannels , mozFrameBufferLength , mozSampleRate properties | No support | No support | 4.0 (2.0) | No support | No support | No support |
mozGetMetadata() | No support | No support | 17.0 (17.0) | No support | No support | No support |
mozLoadFrom() Obsolete since Gecko 24
| No support | No support | 3.6 (1.9.2) | No support | No support | No support |
mozSrcObject property
| No support | No support |
18.0 (18.0) No support[11] | No support | No support | No support |
initialTime property
| ? | No support | 9.0 (9.0)[4] | ? | ? | ? |
fastSeek method | ? | No support | 31.0 (31.0) | ? | ? | ? |
startDate property | ? | No support | No support[8] | ? | ? | ? |
mediaGroup and controller properties | ? | No support | No support[9] | ? | ? | ? |
audioTracks , and videoTracks properties | ? | No support | 33.0 (33.0) [5] | ? | ? | ? |
textTracks property | ? | No support | Nightly build [6] | ? | ? | ? |
sinkId property and setSinkId() method | 49.0 | No support | ? | ? | ? | ? |
seekToNextFrame() method | ? | No support | 49 (49) [10] | ? | ? | ? |
srcObject | 52.0 | (Yes) | (Yes) | ? | 39 | ? |
captureStream() | 53.0 | No support | ? | ? | ? | ? |
onwaitingforkey | 55.0 | No support | ? | ? | 42 | ? |
controlsList | 58.0 | ? | ? | ? | 45 | ? |
Feature | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | ? | (Yes) | (Yes) |
buffered property | (Yes) | (Yes) | (Yes) | 4.0 (2.0) | (Yes) | ? | ? | ? |
defaultMuted property | (Yes) | (Yes) | (Yes) | 11.0 (11.0) | (Yes) | ? | ? | ? |
loop property | (Yes) | (Yes) | (Yes) | 11.0 (11.0) | (Yes) | ? | ? | ? |
seekable property | (Yes) | (Yes) | (Yes) | 8.0 (8.0) | (Yes) | ? | ? | ? |
defaultPlaybackRate property | (Yes) | (Yes) | (Yes) | 20.0 (20.0) | (Yes) | ? | ? | ? |
playbackRate property | (Yes) | (Yes) | (Yes) | 20.0 (20.0) | (Yes) | ? | ? | ? |
preservesPitch property
| (Yes) | (Yes) | No support | 20.0 (20.0)moz | (Yes) | No support | No support | No support |
preload property | (Yes) | (Yes) | (Yes) | 4.0 (2.0) | (Yes) | ? | ? | ? |
played property | (Yes) | (Yes) | (Yes) | 15.0 (15.0) | (Yes) | ? | ? | ? |
crossOrigin property | (Yes) | (Yes) | (Yes) | 12.0 (12.0)[3] 22.0 (22.0) | (Yes) | ? | ? | ? |
mozAudiochannelType | No support | No support | No support | No support | 1.0.1 | No support | No support | No support |
mozChannels , mozFrameBufferLength , mozSampleRate properties | No support | No support | No support | 4.0 (2.0) | (Yes) | No support | No support | No support |
mozGetMetadata() | No support | No support | No support | 17.0 (17.0) | (Yes) | No support | No support | No support |
mozLoadFrom()
| No support | No support | No support | 1.0 (1.9.2)[7] | (Yes) | No support | No support | No support |
mozSrcObject property
| No support | No support | No support | 18.0 (18.0)No support[11] | (Yes) | No support | No support | No support |
initialTime property
| ? | ? | No support | 9.0 (9.0)[4] | (Yes) | ? | ? | ? |
fastSeek method | ? | ? | No support | 31.0 (31.0) | (Yes) | ? | ? | ? |
startDate property | ? | ? | No support | No support[8] | (Yes) | ? | ? | ? |
mediaGroup and controller properties | ? | ? | No support | No support[9] | (Yes) | ? | ? | ? |
audioTracks , and videoTracks properties | ? | ? | (Yes) | 33.0 (33.0)[5] | (Yes) | ? | ? | ? |
textTracks property | ? | ? | (Yes) | Nightly build[6] | (Yes) | ? | ? | ? |
sinkId property and setSinkId() method | 49.0 | 49.0 | No support | ? | ? | ? | ? | ? |
seekToNextFrame() method | ? | ? | No support | 49.0 (49) [10] | ? | ? | ? | ? |
srcObject | 52.0 | 52.0 | (Yes) | (Yes) | ? | ? | 39 | ? |
captureStream() | 53.0 | 53.0 | No support | ? | ? | ? | ? | ? |
onwaitingforkey | 55.0 | 55.0 | No support | ? | ? | ? | 42 | ? |
controlsList | 58.0 | 58.0 | ? | ? | ? | ? | 42 | ? |
[1] The NETWORK_LOADED
state was removed to align with the HTML spec in Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1).
[2] Previously Gecko implemented this as autobuffer
.
[3] Gecko implements this in lowercase, i.e. crossorigin
.
[4] The feature was removed in Gecko 23.0 (Firefox 23 / Thunderbird 23 / SeaMonkey 2.20).
[5] The implementation is hidden behind the media.track.enabled
preference.
[6] The implementation is hidden behind the media.webvtt.enabled
preference, defaulting there to true
.
[7] This feature was removed in 24.0 (24).
[8] Gecko doesn't implement this yet. See bug 847376.
[9] Gecko doesn't implement this yet. See bug 847377.
[10] The preference media.seekToNextFrame
must be enabled to use the seekToNextFrame()
method.
[11] The proprietary mozSrcObject
property was removed in Firefox 58 (bug 1183495). Use the standard HTMLMediaElement.srcObject
property instead.
<video>
and <audio>
HTML elements.HTMLVideoElement
and HTMLAudioElement
interfaces, derived from HTMLMediaElement
.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement