Bitmovin Player API 8.274.0
    Preparing search index...

    Interface AudioTrackEvent

    Events which can be triggered by API calls, UI interactions, or player internals. The issuer identifies the origin of the action that triggered the event.

    interface AudioTrackEvent {
        issuer?: string;
        time: number;
        timestamp: number;
        track: AudioTrack;
        type: PlayerEvent;
    }

    Hierarchy (View Summary)

    Index
    issuer?: string

    The issuer of this event, as passed into the according API method. 'api' by default if no issuer was specified.

    time: number

    Current playback time (in seconds)

    timestamp: number

    The time at which this event was fired

    track: AudioTrack

    The affected audio track

    Event type, e.g. 'play'