mediaforge - v0.3.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;
        profile?: "aac_low" | "aac_he" | "aac_he_v2" | "aac_ld" | "aac_eld";
    }
    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

    profile?: "aac_low" | "aac_he" | "aac_he_v2" | "aac_ld" | "aac_eld"

    AAC profile: aac_low, aac_he, aac_he_v2, aac_ld, aac_eld