--- title: VideoTrackList slug: Web/API/VideoTrackList tags: - API - HTML DOM - Interface - Media - NeedsTranslation - Reference - TopicStub - Track List - Tracks - Video - VideoTrackList - list translation_of: Web/API/VideoTrackList ---
The VideoTrackList interface is used to represent a list of the video tracks contained within a {{HTMLElement("video")}} element, with each track represented by a separate {{domxref("VideoTrack")}} object in the list.
Retrieve an instance of this object with {{domxref('HTMLMediaElement.VideoTracks')}}. The individual tracks can be accessed using array syntax or functions such as {{jsxref("Array.forEach", "forEach()")}} for example.
This interface also inherits properties from its parent interface, {{domxref("EventTarget")}}.
−1 otherwise.This interface also inherits methods from its parent interface, {{domxref("EventTarget")}}.
VideoTrackList whose {{domxref("VideoTrack.id", "id")}} matches the specified string. If no match is found, null is returned.addtrackonaddtrack property.changeonchange property.removetrackonremovetrack property.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 {{event("addtrack")}} and {{event("removetrack")}} events, so that you can detect when tracks are added to or removed from the media element's stream. See {{domxref("VideoTrackList.onaddtrack", "onaddtrack")}} and {{domxref("VideoTrackList.onremovetrack", "onremovetrack")}} for details and examples.
To get a media element's {{domxref("VideoTrackList")}}, use its {{domxref("HTMLMediaElement.videoTracks", "videoTracks")}} property.
var videoTracks = document.querySelector("video").videoTracks;
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 {{event("addtrack")}} and {{event("removetrack")}} events are set up.
videoTracks.onaddtrack = updateTrackCount;
videoTracks.onremovetrack = updateTrackCount;
function updateTrackCount(event) {
trackCount = videoTracks.length;
drawTrackCountIndicator(trackCount);
}
| Specification | Status | Comment |
|---|---|---|
| {{SpecName('HTML WHATWG', '#videotracklist', 'VideoTrackList')}} | {{Spec2('HTML WHATWG')}} |
{{Compat("api.VideoTrackList")}}