Command line arguments used to spawn the process.
Path of the running ffmpeg executable.
UNSTABLE: Deprecated, not for use in new projects.
Aborts the conversion allowing FFmpeg to finish the generated files correctly. This waits for FFmpeg to exit but doesn't guarantee that FFmpeg will succeed, any possible errors should still be handled.
Returns a Promise which resolves when the process exits, or rejects when the process exits with
a non-zero status code. If the ChildProcess
emits an error
event, the Promise will be
rejected with that error.
UNSTABLE: Deprecated, not for use in new projects.
Sends a signal to the running process. See https://nodejs.org/api/child_process.html#child_process_subprocess_kill_signal
The signal to send.
Pauses the conversion, returns true
if the operation succeeds or false
if it fails.
Returns an AsyncGenerator representing the real-time progress of the conversion.
Resumes the conversion, returns true
if the operation succeeds or false
if it fails.
Returns the underlying NodeJS' ChildProcess instance.