Interface

TextTrack

TextTrack

This interface also inherits properties from EventTarget.

View Source js/lib.dom.d.ts, line 6629

Members

TextTrackCueList | null

# 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.

View Source js/lib.dom.d.ts, line 6632

void

# addCue

Adds the given cue to textTrack's text track list of cues.

View Source js/lib.dom.d.ts, line 6678

TextTrackCueList | null

# cues

Returns the text track list of cues, as a TextTrackCueList object.

View Source js/lib.dom.d.ts, line 6637

string

# 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.

View Source js/lib.dom.d.ts, line 6642

string

# inBandMetadataTrackDispatchType

Returns the text track in-band metadata track dispatch type string.

View Source js/lib.dom.d.ts, line 6651

TextTrackKind

# kind

Returns the text track kind string.

View Source js/lib.dom.d.ts, line 6656

string

# 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).

View Source js/lib.dom.d.ts, line 6661

string

# language

Returns the text track language string.

View Source js/lib.dom.d.ts, line 6666

TextTrackMode

# mode

Returns the text track mode, represented by a string from the following list:

Can be set, to change the mode.

View Source js/lib.dom.d.ts, line 6671

void

# removeCue

Removes the given cue from textTrack's text track list of cues.

View Source js/lib.dom.d.ts, line 6683