API Docs
    Preparing search index...

    Interface SpliceInfo

    Splice / marker information.

    Carried by #EXT-X-CUE-OUT, #EXT-X-CUE-IN, and raw SCTE-35 tags.

    interface SpliceInfo {
        duration?: number;
        tagName?: string;
        type: "OUT" | "IN" | "RAW";
        value?: any;
    }
    Index

    Properties

    duration?: number

    Duration in seconds (for OUT type).

    tagName?: string

    Original tag name (for RAW type).

    type: "OUT" | "IN" | "RAW"

    Marker type.

    value?: any

    Raw tag value.