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 full)

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.