mediaforge - v0.1.0
    Preparing search index...

    Interface ProbeFormat

    Format info from ffprobe -show_format

    interface ProbeFormat {
        filename?: string;
        nb_streams?: number;
        nb_programs?: number;
        format_name?: string;
        format_long_name?: string;
        start_time?: string;
        duration?: string;
        size?: string;
        bit_rate?: string;
        probe_score?: number;
        tags?: Record<string, string>;
    }
    Index

    Properties

    filename?: string

    File path

    nb_streams?: number

    Number of streams

    nb_programs?: number

    Number of programs

    format_name?: string

    Container format short names (comma-separated), e.g. "matroska,webm"

    format_long_name?: string

    Container format long name

    start_time?: string

    Container start time in seconds

    duration?: string

    Total duration in seconds

    size?: string

    Total file size in bytes

    bit_rate?: string

    Overall bitrate in bits/s

    probe_score?: number

    Probe score 0–100

    tags?: Record<string, string>

    Container-level metadata tags