mediaforge - v0.1.0
    Preparing search index...

    Interface ProgressInfo

    Parsed progress information emitted by FFmpeg on stderr. FFmpeg writes key=value lines terminated by progress=continue|end.

    interface ProgressInfo {
        frame: number;
        fps: number;
        bitrate: string;
        totalSize: number;
        outTimeUs: number;
        outTime: string;
        dupFrames: number;
        dropFrames: number;
        speed: number;
        progress: "continue" | "end";
        percent?: number;
    }
    Index

    Properties

    frame: number

    Current frame number being processed

    fps: number

    Frames per second (encoding speed)

    bitrate: string

    Output bitrate, e.g. "2048.0kbits/s"

    totalSize: number

    Total bytes written so far

    outTimeUs: number

    Output time in microseconds

    outTime: string

    Output time as human string, e.g. "00:01:23.456789"

    dupFrames: number

    Duplicate frames count

    dropFrames: number

    Dropped frames count

    speed: number

    Encoding speed relative to realtime, e.g. 2.5 means 2.5×

    progress: "continue" | "end"

    Whether this is an intermediate update or the final one

    percent?: number

    Percentage 0–100 if duration is known, otherwise undefined