mediaforge - v0.1.0
    Preparing search index...

    Interface StreamSpecifier

    A typed stream specifier that serializes to the ffmpeg -map string format.

    streamSpec(0, 'v', 0) → '0:v:0'
    streamSpec(1, 'a') → '1:a'
    streamSpec(0) → '0'
    interface StreamSpecifier {
        fileIndex: number;
        type?: MediaTypeChar;
        streamIndex?: number;
        negate?: boolean;
    }
    Index

    Properties

    fileIndex: number

    Input file index (0-based)

    Stream type

    streamIndex?: number

    Stream index within the type

    negate?: boolean

    Negate the selection