Emitted when a new source is loaded. This does not mean that the source is immediately ready for playback. ReadyEvent indicates the player is ready for immediate playback.

interface SourceLoadedEvent {
    name: string;
    source: EventSource;
    timestamp: number;
}

Hierarchy (view full)

Properties

Properties

name: string

This event name as it is on the native side.

source: EventSource

Source that was loaded into player.

timestamp: number

The UNIX timestamp in which this event happened.