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

    Interface SeekEvent

    Emitted when the player is about to seek to a new position. This event only applies to VoD streams. When looking for an equivalent for live streams, the TimeShiftEvent is relevant.

    interface SeekEvent {
        from: SeekPosition;
        name: string;
        timestamp: number;
        to: SeekPosition;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    Origin source metadata.

    name: string

    This event name as it is on the native side.

    timestamp: number

    The UNIX timestamp in which this event happened.

    Target source metadata.