We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 23b315a + 7cee413 commit 3eeb62cCopy full SHA for 3eeb62c
1 file changed
src/backend/model/threading/VideoConverterWorker.ts
@@ -52,6 +52,10 @@ export class VideoConverterWorker {
52
})
53
.on('error', (e: any) => {
54
reject('[FFmpeg] ' + e.toString() + ' executed: ' + executedCmd);
55
+ })
56
+ .on('stderr', function (line: string) {
57
+ // Although this is under `stderr` event, all of ffmpeg output come here.
58
+ Logger.debug('[FFmpeg] ' + line);
59
});
60
61
// set custom input options
0 commit comments