@musallam/audio-video-client
    Preparing search index...

    Interface PresetItem

    interface PresetItem {
        alpha: boolean;
        bitrateMode: string;
        codec: string;
        label: string;
        maxBitrateInKbps?: number;
        maxFps: PresetItemMaxFps;
        mediaType: string;
        presetId: string;
        primaryUsage: string;
        profile?: string;
        targetBitrateInKbps?: number;
    }
    Index

    Properties

    alpha: boolean

    Whether the preset supports alpha channel.

    bitrateMode: string

    Bitrate mode (e.g., vbr, cbr).

    codec: string

    Video codec used (e.g., H.264).

    label: string

    Human-readable label for the preset.

    maxBitrateInKbps?: number

    Maximum bitrate in kilobits per second.

    Maximum frames per second as a fraction.

    mediaType: string

    MIME type of the output media (e.g., video/mp4).

    presetId: string

    Unique identifier for the preset.

    primaryUsage: string

    Primary use case for this preset.

    profile?: string

    Codec profile (e.g., high).

    targetBitrateInKbps?: number

    Target bitrate in kilobits per second.