Interface PlaybackErrorEvent

Playback error with recovery information.

interface PlaybackErrorEvent {
    error: Error;
    errorType: "context" | "source" | "decode" | "unknown";
    recoverable: boolean;
    timestamp: number;
}

Properties

error: Error
errorType: "context" | "source" | "decode" | "unknown"
recoverable: boolean
timestamp: number