mediaforge - v0.1.0
    Preparing search index...

    Interface FFmpegEvents

    All events emitted by an FFmpegProcess.

    interface FFmpegEvents {
        stderr: [line: string];
        progress: [info: ProgressInfo];
        start: [args: string[]];
        end: [];
        error: [err: Error];
    }
    Index

    Properties

    stderr: [line: string]

    Raw stderr line

    progress: [info: ProgressInfo]

    Parsed progress update (emitted on each progress=continue|end block)

    start: [args: string[]]

    Process started — emits the full args array

    end: []

    Process finished successfully

    error: [err: Error]

    Process failed