docs.rodeo

MDN Web Docs mirror

AudioTrackList: addtrack event

{{APIRef}} 

The addtrack event is fired when a track is added to an AudioTrackList.

Syntax

Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}} , or set an event handler property.

addEventListener("addtrack", (event) => { })

onaddtrack = (event) => { }

Event type

A {{domxref("TrackEvent")}} . Inherits from {{domxref("Event")}} .

{{InheritanceDiagram("TrackEvent")}} 

Event properties

TrackEvent is based on {{domxref("Event")}} , so properties of Event are also available on TrackEvent objects.

Description

Trigger

The addtrack event is called whenever a new track is added to the media element whose audio tracks are represented by the AudioTrackList object. This happens when tracks are added to the element when the media is first attached to the element; one addtrack event will occur for each audio track in the media resource.

This event is not cancelable and does not bubble.

Use cases

You can use this event to react to a new audio track becoming available. You may want to update your UI elements to allow for user selection of the new audio track, for example.

Examples

Using addEventListener():

const videoElement = document.querySelector("video");

videoElement.audioTracks.addEventListener("addtrack", (event) => {
  console.log(`Audio track: ${event.track.label} added`);
});

Using the onaddtrack event handler property:

const videoElement = document.querySelector("video");

videoElement.audioTracks.onaddtrack = (event) => {
  console.log(`Audio track: ${event.track.label} added`);
};

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN