VideoTrackList
The VideoTrackList interface is used to represent a list of the video tracks contained within a <video> element, with each track represented by a separate VideoTrack object in the list.
Retrieve an instance of this object with HTMLMediaElement.videoTracks. The individual tracks can be accessed using array syntax or functions such as forEach() for example.
Properties
This interface also inherits properties from its parent interface, EventTarget.
-
lengthRead only -
The number of tracks in the list.
-
selectedIndexRead only -
The index of the currently selected track, if any, or
−1otherwise.
Event handlers
onaddtrack-
An event handler to be called when the
addtrackevent is fired, indicating that a new video track has been added to the media element. onchange-
An event handler to be called when the
changeevent occurs — that is, when the value of theselectedproperty for a track has changed, due to the track being made active or inactive. onremovetrack-
An event handler to call when the
removetrackevent is sent, indicating that a video track has been removed from the media element.
Methods
This interface also inherits methods from its parent interface, EventTarget.
getTrackById()-
Returns the
VideoTrackfound within theVideoTrackListwhoseidmatches the specified string. If no match is found,nullis returned.
Events
addtrack-
Fired when a new video track has been added to the media element. Also available via the
onaddtrackproperty. change-
Fired when a video track has been made active or inactive. Also available via the
onchangeproperty. removetrack-
Fired when a new video track has been removed from the media element. Also available via the
onremovetrackproperty.
Usage notes
In addition to being able to obtain direct access to the video tracks present on a media element, VideoTrackList lets you set event handlers on the addtrack and removetrack events, so that you can detect when tracks are added to or removed from the media element's stream. See onaddtrack and onremovetrack for details and examples.
Examples
Getting a media element's video track list
To get a media element's VideoTrackList, use its videoTracks property.
var videoTracks = document.querySelector("video").videoTracks;
Monitoring track count changes
In this example, we have an app that displays information about the number of channels available. To keep it up to date, handlers for the addtrack and removetrack events are set up.
videoTracks.onaddtrack = updateTrackCount; videoTracks.onremovetrack = updateTrackCount; function updateTrackCount(event) { trackCount = videoTracks.length; drawTrackCountIndicator(trackCount); }
Specifications
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
VideoTrackList |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
addtrack_event |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
change_event |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
getTrackById |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
length |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
onaddtrack |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
onchange |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
onremovetrack |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
removetrack_event |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
selectedIndex |
37 |
79
12-79
|
33 |
10 |
24 |
7 |
No |
37 |
33 |
24 |
7 |
No |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/VideoTrackList