OpenTV Player Web HTML5

Class: AudioTrackList

AudioTrackList

The current list of AudioTrack for a media file.

new AudioTrackList(tracks)

Create an instance of this class.

Name Type Default Description
tracks Array.<AudioTrack> [] optional

A list of AudioTrack to instantiate the list with.

See:

Extends

Members

inherited overrides lengthnumber

The current number of Tracks in the this Trackist.

Methods

inherited overrides addEventListener()

An alias of EventTarget#on. Allows EventTarget to mimic the standard DOM API.

See:

overrides addTrack(track)

Add an AudioTrack to the AudioTrackList.

Name Type Description
track AudioTrack

The AudioTrack to add to the list

Fires:

inherited overrides dispatchEvent()

An alias of EventTarget#trigger. Allows EventTarget to mimic the standard DOM API.

See:

inherited overrides off(type, fn)

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.

Name Type Description
type string | Array.<string>

An event name or an array of event names.

fn EventTarget~EventListener

The function to remove.

inherited overrides on(type, fn)

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.

Name Type Description
type string | Array.<string>

An event name or an array of event names.

fn EventTarget~EventListener

The function to call with EventTargets

inherited overrides one(type, fn)

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.

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 overrides removeEventListener()

An alias of EventTarget#off. Allows EventTarget to mimic the standard DOM API.

See:

inherited overrides removeTrack(rtrack)

Remove a Track from the TrackList

Name Type Description
rtrack Track

The audio, video, or text track to remove from the list.

Fires:

inherited overrides trigger(event)

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.

Name Type Description
event string | EventTarget~Event | Object

The name of the event, an Event, or an object with a key of type set to an event name.

Events

inherited overrides addtrack

Triggered when a track is added to a track list.

Type:
Properties:
Name Type Description
track Track

A reference to track that was added.

Triggered when a different track is selected/enabled.

Type:
Listeners of This Event:

inherited overrides removetrack

Triggered when a track is removed from track list.

Type:
Properties:
Name Type Description
track Track

A reference to track that was removed.