web api interface
TextTrackCueList
The TextTrackCueList interface of the WebVTT API is an array-like object that represents a dynamically updating list of TextTrackCue objects.
An instance of this type is obtained from cues in order to get all the cues in the TextTrack object.
This interface has no constructor.
Instance properties
lengthRead only- : An
unsigned longthat is the number of cues in the list.
- : An
Instance methods
getCueById()- : Returns the first
TextTrackCueobject with the identifier passed to it.
- : Returns the first
Examples
The textTracks property returns a TextTrackList object listing all of the TextTrack objects, one for each text track linked to the media. The cues property then returns a TextTrackCueList containing the cues for that particular track.
const video = document.getElementById("video");
video.onplay = () => {
console.log(video.textTracks[0].cues);
};
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.