mediaforge - v0.3.0
    Preparing search index...

    Interface ProResOptions

    Typed options for the Apple ProRes encoder (prores_ks). Available in both FFmpeg v7 and v8 (including Android Termux).

    interface ProResOptions {
        profile?: 0 | 1 | 2 | 3 | 4 | 5;
        bits?: 10 | 12;
        vendor?: string;
        alphaQuality?: number;
        mbs?: "fixed" | "adaptive";
    }
    Index

    Properties

    profile?: 0 | 1 | 2 | 3 | 4 | 5

    ProRes profile: 0 = Proxy, 1 = LT, 2 = Standard, 3 = HQ, 4 = 4444, 5 = 4444 XQ

    bits?: 10 | 12

    Bits per raw sample (10 or 12). Default: 10

    vendor?: string

    Vendor tag written into the stream. Default: 'apl0'

    alphaQuality?: number

    Disable alpha channel in 4444 profile

    mbs?: "fixed" | "adaptive"

    Motion estimation mode: 'fixed' | 'adaptive'