mediaforge - v0.1.0
    Preparing search index...

    Interface FFmpegProcess

    interface FFmpegProcess {
        emitter: FFmpegEmitter;
        child: ChildProcess;
        stdin: Writable | null;
        stdout: Readable | null;
        kill(signal?: Signals): void;
    }
    Index

    Methods

    Properties

    Methods

    • Kill the process with an optional signal

      Parameters

      • Optionalsignal: Signals

      Returns void

    Properties

    emitter: FFmpegEmitter

    Typed event emitter — attach listeners before calling run()

    child: ChildProcess

    The underlying ChildProcess (available after start)

    stdin: Writable | null

    stdin of the child process

    stdout: Readable | null

    stdout of the child process (useful for pipe output)