new TextTrackList()
[tracks/text-track-list.js](https://docs.videojs.com/tracks_text-track-list.js.html)
, [line 12](https://docs.videojs.com/tracks_text-track-list.js.html#line12)
See:
Extends
Members
length :number
[tracks/track-list.js](https://docs.videojs.com/tracks_track-list.js.html)
, [line 27](https://docs.videojs.com/tracks_track-list.js.html#line27)
The current number of Track
s in the this Trackist.
Inherited From:
Methods
addEventListener()
[event-target.js](https://docs.videojs.com/event-target.js.html)
, [line 75](https://docs.videojs.com/event-target.js.html#line75)
An alias of EventTarget#on. Allows EventTarget
to mimic the standard DOM API.
Inherited From:
See:
addTrack(track)
[tracks/text-track-list.js](https://docs.videojs.com/tracks_text-track-list.js.html)
, [line 22](https://docs.videojs.com/tracks_text-track-list.js.html#line22)
Add a TextTrack to the TextTrackList
Parameters:
Name | Type | Description |
---|---|---|
track | TextTrack | The text track to add to the list. |
Fires:
Overrides:
dispatchEvent()
[event-target.js](https://docs.videojs.com/event-target.js.html)
, [line 175](https://docs.videojs.com/event-target.js.html#line175)
An alias of EventTarget#trigger. Allows EventTarget
to mimic the standard DOM API.
Inherited From:
See:
off(type, fn)
[event-target.js](https://docs.videojs.com/event-target.js.html)
, [line 88](https://docs.videojs.com/event-target.js.html#line88)
Removes an event listener
for a specific event from an instance of EventTarget
. This makes it so that the event listener
will no longer get called when the named event happens.
Parameters:
Name | Type | Description |
---|---|---|
type | string | Array.<string> | An event name or an array of event names. |
fn | EventTarget~EventListener | The function to remove. |
Inherited From:
on(type, fn)
[event-target.js](https://docs.videojs.com/event-target.js.html)
, [line 58](https://docs.videojs.com/event-target.js.html#line58)
Adds an event listener
to an instance of an EventTarget
. An event listener
is a function that will get called when an event with a certain name gets triggered.
Parameters:
Name | Type | Description |
---|---|---|
type | string | Array.<string> | An event name or an array of event names. |
fn | EventTarget~EventListener | The function to call with |
Inherited From:
one(type, fn)
[event-target.js](https://docs.videojs.com/event-target.js.html)
, [line 112](https://docs.videojs.com/event-target.js.html#line112)
This function will add an event listener
that gets triggered only once. After the first trigger it will get removed. This is like adding an event listener
with EventTarget#on that calls EventTarget#off on itself.
Parameters:
Name | Type | Description |
---|---|---|
type | string | Array.<string> | An event name or an array of event names. |
fn | EventTarget~EventListener | The function to be called once for each event name. |
Inherited From:
removeEventListener()
[event-target.js](https://docs.videojs.com/event-target.js.html)
, [line 99](https://docs.videojs.com/event-target.js.html#line99)
An alias of EventTarget#off. Allows EventTarget
to mimic the standard DOM API.
Inherited From:
See:
removeTrack(rtrack)
[tracks/track-list.js](https://docs.videojs.com/tracks_track-list.js.html)
, [line 110](https://docs.videojs.com/tracks_track-list.js.html#line110)
Remove a Track from the TrackList
Parameters:
Name | Type | Description |
---|---|---|
rtrack | Track | The audio, video, or text track to remove from the list. |
Fires:
Overrides:
trigger(event)
[event-target.js](https://docs.videojs.com/event-target.js.html)
, [line 148](https://docs.videojs.com/event-target.js.html#line148)
This function causes an event to happen. This will then cause any event listeners
that are waiting for that event, to get called. If there are no event listeners
for an event then nothing will happen.
If the name of the Event
that is being triggered is in EventTarget.allowedEvents_
. Trigger will also call the on
+ uppercaseEventName
function.
Example: ‘click’ is in EventTarget.allowedEvents_
, so, trigger will attempt to call onClick
if it exists.
Parameters:
Name | Type | Description |
---|---|---|
event | string | EventTarget~Event | Object | The name of the event, an |
Inherited From:
Events
addtrack
[tracks/track-list.js](https://docs.videojs.com/tracks_track-list.js.html)
, [line 66](https://docs.videojs.com/tracks_track-list.js.html#line66)
Triggered when a track is added to a track list.
Type:
Listeners of This Event:
Properties:
Name | Type | Description |
---|---|---|
track | Track | A reference to track that was added. |
Overrides:
change
[tracks/track-list.js](https://docs.videojs.com/tracks_track-list.js.html)
, [line 169](https://docs.videojs.com/tracks_track-list.js.html#line169)
Triggered when a different track is selected/enabled.
Type:
Listeners of This Event:
- CaptionSettingsMenuItem#handleTracksChange
- ChaptersButton#update
- DescriptionsButton#handleTracksChange
- SubsCapsMenuItem#handleTracksChange
Inherited From:
removetrack
[tracks/track-list.js](https://docs.videojs.com/tracks_track-list.js.html)
, [line 130](https://docs.videojs.com/tracks_track-list.js.html#line130)
Triggered when a track is removed from track list.
Type:
Listeners of This Event:
Properties:
Name | Type | Description |
---|---|---|
track | Track | A reference to track that was removed. |
Inherited From: