Emitted when an audio track is removed from the player.

interface AudioRemovedEvent {
    audioTrack: AudioTrack;
    name: string;
    timestamp: number;
}

Hierarchy (view full)

Properties

audioTrack: AudioTrack

Audio track that has been removed.

name: string

This event name as it is on the native side.

timestamp: number

The UNIX timestamp in which this event happened.