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

    Interface TimeShiftEvent

    Emitted when the player starts time shifting. This event only applies to live streams. When looking for an equivalent for VoD streams, the SeekEvent is relevant.

    interface TimeShiftEvent {
        name: string;
        position: number;
        targetPosition: number;
        timestamp: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    name: string

    This event name as it is on the native side.

    position: number

    The position from which we start the time shift

    targetPosition: number

    The position to which we want to jump for the time shift

    timestamp: number

    The UNIX timestamp in which this event happened.