TextTrackList
The TextTrackList
interface is used to represent a list of the text tracks defined by the <track>
element, with each track represented by a separate textTrack
object in the list.
Retrieve an instance of this object with HTMLMediaElement.textTracks
. 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
.
-
length
Read only -
The number of tracks in the list.
Event handlers
onaddtrack
-
An event handler to be called when the
addtrack
event is fired, indicating that a new text track has been added to the media element. onchange
-
An event handler to be called when the
change
event occurs. onremovetrack
-
An event handler to call when the
removetrack
event is sent, indicating that a text track has been removed from the media element.
Methods
This interface also inherits methods from its parent interface, EventTarget
.
getTrackById()
-
Returns the
TextTrack
found within theTextTrackList
whoseid
matches the specified string. If no match is found,null
is returned.
Events
addtrack
-
Fired when a new text track has been added to the media element. Also available via the
onaddtrack
property. change
-
Fired when a text track has been made active or inactive. Also available via the
onchange
property. removetrack
-
Fired when a new text track has been removed from the media element. Also available via the
onremovetrack
property.
Usage notes
In addition to being able to obtain direct access to the text tracks present on a media element, TextTrackList
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 video element's text track list
To get a media element's TextTrackList
, use its textTracks
property.
var textTracks = document.querySelector("video").textTracks;
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.
textTracks.onaddtrack = updateTrackCount; textTracks.onremovetrack = updateTrackCount; function updateTrackCount(event) { trackCount = textTracks.length; drawTrackCountIndicator(trackCount); }
Specifications
Specification |
---|
HTML Standard (HTML) # text-track-api |
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 | |
TextTrackList |
23 |
12 |
31 |
10 |
≤12.1 |
6 |
≤37 |
25 |
31 |
≤12.1 |
7 |
1.5 |
addtrack_event |
Yes |
12 |
31 |
11 |
? |
6 |
Yes |
Yes |
31 |
? |
7 |
Yes |
change_event |
Yes |
18 |
31 |
No |
? |
7 |
Yes |
Yes |
31 |
? |
7 |
Yes |
getTrackById |
33 |
18 |
31 |
No |
20 |
7 |
4.4.3 |
33 |
31 |
20 |
8 |
2.0 |
length |
44 |
12 |
31 |
10 |
31 |
6 |
44 |
44 |
31 |
32 |
7 |
4.0 |
onaddtrack |
23 |
12 |
31 |
11 |
≤12.1 |
6 |
≤37 |
25 |
31 |
≤12.1 |
7 |
1.5 |
onchange |
33 |
18 |
31 |
No |
20 |
7 |
4.4 |
33 |
31 |
20 |
7 |
2.0 |
onremovetrack |
33 |
18 |
31 |
No |
20
≤12.1-15
|
7 |
4.4 |
33 |
31 |
20
≤12.1-14
|
7 |
2.0 |
removetrack_event |
Yes |
18 |
31 |
No |
? |
7 |
Yes |
Yes |
31 |
? |
7 |
Yes |
© 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/TextTrackList