Interface PlayingEvent

Fired when playback is ready to start after having been paused or delayed due to lack of media data.

interface PlayingEvent {
    currentTime: number;
    date: Date;
    type: "playing";
}

Hierarchy (view full)

  • Event<"playing">
    • PlayingEvent

Properties

Properties

currentTime: number

The player's current time.

date: Date

The creation date of the event.

type: "playing"

The type of the event.