Vinyl
    Preparing search index...

    Variable ErrorOriginConst

    ErrorOrigin: {
        API: string;
        COMPATIBILITY: string;
        DRM: string;
        INTERNAL: string;
        MEDIA: string;
        PARSING: string;
        SERVICE_EXTERNAL: string;
        SERVICE_INTERNAL: string;
        UNCAUGHT: string;
    } = ...

    Type declaration

    • API: string

      A Vinyl interface was used incorrectly by a consumer.

    • COMPATIBILITY: string

      The error originated from an incompatibility with browser APIs, such as EME.

    • DRM: string

      The error originated from DRM. This does not include internal or service errors, only errors from the creation of media keys or media key sessions.

    • INTERNAL: string

      The error originated from Vinyl and was caught.

    • MEDIA: string

      The error originated from a problem playing provided media. The reporter is from a component such as the element, source buffer, media source, etc.

    • PARSING: string

      The error originated from a problem parsing input data. Such as a malformed Dash or HLS manifest.

    • SERVICE_EXTERNAL: string

      The error originated from a failed service call (500 errors).

    • SERVICE_INTERNAL: string

      The error originated from a failed service call (400 errors).

    • UNCAUGHT: string

      The error originated from Vinyl and was reported from the uncaught exception or promise rejection handlers.