Bitmovin Player React Native SDK - v1.1.0
    Preparing search index...

    Interface AudioChangedEvent

    Emitted when the player's selected audio track has changed.

    interface AudioChangedEvent {
        name: string;
        newAudioTrack: AudioTrack;
        oldAudioTrack: AudioTrack;
        timestamp: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    name: string

    This event name as it is on the native side.

    newAudioTrack: AudioTrack

    Audio track that is selected now.

    oldAudioTrack: AudioTrack

    Audio track that was previously selected.

    timestamp: number

    The UNIX timestamp in which this event happened.