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

    Interface AudioTrack

    Represents an audio track for a video.

    interface AudioTrack {
        identifier?: string;
        isDefault?: boolean;
        label?: string;
        language?: string;
        qualities?: AudioQuality[];
        roles?: MediaTrackRole[];
        url?: string;
    }
    Index

    Properties

    identifier?: string

    The unique identifier for this track. If no value is provided, a random UUIDv4 will be generated for it.

    isDefault?: boolean

    If set to true, this track would be considered as default. Default is false.

    label?: string

    The label for this track.

    language?: string

    The IETF BCP 47 language tag associated with this track, e.g. pt, en, es etc.

    qualities?: AudioQuality[]

    The AudioQuality array associated with this AudioTrack.

    Android

    roles?: MediaTrackRole[]

    An array of MediaTrackRole objects, each describing a specific role or characteristic of the audio track. This property provides a unified way to understand track purposes (e.g., for accessibility) across platforms.

    url?: string

    The URL to the timed file, e.g. WebVTT file.