Emitted when a subtitle track is removed from the player.

interface SubtitleRemovedEvent {
    name: string;
    subtitleTrack: SubtitleTrack;
    timestamp: number;
}

Hierarchy (view full)

  • Event
    • SubtitleRemovedEvent

Properties

name: string

This event name as it is on the native side.

subtitleTrack: SubtitleTrack

Subtitle track that has been removed.

timestamp: number

The UNIX timestamp in which this event happened.