THEOplayer Web SDK
    Preparing search index...

    Interface ManifestErrorEvent

    Fired when a manifest cannot be loaded.

    interface ManifestErrorEvent {
        date: Date;
        retryCount: number;
        statusCode: undefined | number;
        statusMessage: undefined | string;
        type: "manifesterror";
    }

    Hierarchy (View Summary)

    • Event<"manifesterror">
      • ManifestErrorEvent
    Index

    Properties

    date: Date

    The creation date of the event.

    retryCount: number

    The number of times the loading of a manifest has been tried.

    statusCode: undefined | number

    The HTTP status code corresponding to the network error returned by the network request.

    statusMessage: undefined | string

    The network status message describing the error that occurred while requesting the manifest.

    type: "manifesterror"

    The type of the event.