mediaforge - v0.1.0
    Preparing search index...

    Interface AacOptions

    Typed options for the native AAC encoder. Derived from ffmpeg -h encoder=aac dump.

    interface AacOptions {
        aacCoder?: "fast" | "anmr" | "twoloop";
        vbr?: 1 | 2 | 3 | 4 | 5;
        bitrate?: number;
        sampleRate?: number;
        channels?: number;
        channelLayout?: ChannelLayout;
        sampleFmt?: SampleFormat;
    }
    Index

    Properties

    aacCoder?: "fast" | "anmr" | "twoloop"

    Coding mode: VBR or CBR

    vbr?: 1 | 2 | 3 | 4 | 5

    VBR quality, 1 (lowest) to 5 (highest). Enables VBR mode.

    bitrate?: number

    Target bitrate in kbps (CBR mode)

    sampleRate?: number

    Sample rate

    channels?: number

    Number of channels

    channelLayout?: ChannelLayout

    Channel layout

    sampleFmt?: SampleFormat

    Sample format