Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 5a79f00

Browse files
committed
SIGKILL when output stream error occurs to ensure the process is killed
1 parent b78841e commit 5a79f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/processor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ module.exports = function(proto) {
493493
var reportingErr = new Error('Output stream error: ' + err.message);
494494
reportingErr.outputStreamError = err;
495495
emitEnd(reportingErr, stdoutRing.get(), stderrRing.get());
496-
ffmpegProc.kill();
496+
ffmpegProc.kill('SIGKILL');
497497
});
498498
}
499499

0 commit comments

Comments
 (0)