Interface WaitingEvent

Fired when playback has stopped because the next frame is not available, but the player expects that frame to become available in due course.

interface WaitingEvent {
    currentTime: number;
    date: Date;
    type: "waiting";
}

Hierarchy (view full)

  • Event<"waiting">
    • WaitingEvent

Properties

Properties

currentTime: number

The player's current time.

date: Date

The creation date of the event.

type: "waiting"

The type of the event.