WebVTTAPI
Types
textTrack
This interface also inherits properties from EventTarget. See TextTrack on MDN
Record fields
label
Returns the text track label, if there is one, or the empty string otherwise (indicating that a custom label probably needs to be generated from the other attributes of the object if the object is exposed to the user). Read more on MDN
id
Returns the ID of the given track.
For in-band tracks, this is the ID that can be used with a fragment if the format supports media fragment syntax, and that can be used with the getTrackById() method.
For TextTrack objects corresponding to track elements, this is the ID of the track element. Read more on MDN
inBandMetadataTrackDispatchType
Returns the text track in-band metadata track dispatch type string. Read more on MDN
mode
Returns the text track mode, represented by a string from the following list:
Can be set, to change the mode. Read more on MDN
cues
Returns the text track list of cues, as a TextTrackCueList object. Read more on MDN
activeCues
Returns the text track cues from the text track list of cues that are currently active (i.e. that start before the current playback position and end after it), as a TextTrackCueList object. Read more on MDN
Module
There are methods and helpers defined in TextTrack .
textTrackCue
TextTrackCues represent a string of text that will be displayed for some duration of time on a TextTrack. This includes the start and end times that the cue will be displayed. A TextTrackCue cannot be used directly, instead one of the derived types (e.g. VTTCue) must be used. See TextTrackCue on MDN
Record fields
track
Returns the TextTrack object to which this text track cue belongs, if any, or null otherwise. Read more on MDN
pauseOnExit
Returns true if the text track cue pause-on-exit flag is set, false otherwise.
Can be set. Read more on MDN