P2P Media Loader Documentation
    Preparing search index...

    Type Alias StreamProperties

    Raw stream properties extracted from the manifest's variant or rendition metadata. They define the stream's identity: streams with equal normalized properties are treated as the same stream by all peers.

    type StreamProperties = {
        bitrate?: number | null;
        codecs?: string | null;
        width?: number | null;
        height?: number | null;
        language?: string | null;
        channels?: string | number | null;
        name?: string | null;
        frameRate?: number | string | null;
        videoRange?: string | null;
    }
    Index
    bitrate?: number | null
    codecs?: string | null
    width?: number | null
    height?: number | null
    language?: string | null
    channels?: string | number | null
    name?: string | null
    frameRate?: number | string | null
    videoRange?: string | null