This commit is contained in:
Amish Shah
2016-08-24 22:26:27 +01:00
parent 8683f45816
commit 253789f398
7 changed files with 26 additions and 9 deletions

View File

@@ -26,6 +26,9 @@ class FfmpegConverterEngine extends ConverterEngine {
'-ss', '0',
'pipe:1',
], { stdio: ['pipe', 'pipe', 'ignore'] });
encoder.on('error', console.log);
encoder.stdin.on('error', console.log);
encoder.stdin.on('error', console.log);
return encoder;
}
}