API Docs
    Preparing search index...

    Interface PartialSegmentBeta

    Partial segment for Low-Latency HLS.

    Corresponds to #EXT-X-PART and #EXT-X-PRELOAD-HINT (TYPE=PART) tags.

    LL-HLS feature

    interface PartialSegment {
        byterange?: Byterange;
        duration?: number;
        gap?: boolean;
        hint?: boolean;
        independent?: boolean;
        uri: string;
    }
    Index

    Properties

    byterange?: Byterange

    Byte range within the resource.

    duration?: number

    Duration in seconds.

    gap?: boolean

    Whether this segment is a gap.

    hint?: boolean

    Whether this is a preload hint (#EXT-X-PRELOAD-HINT).

    independent?: boolean

    Whether this segment can be decoded independently.

    uri: string

    URI to the partial segment.