dont print stderr (stderr is meant for errors, no?)

This commit is contained in:
2026-07-01 11:29:42 +02:00
parent 355d6f4c19
commit bbddf10438
-1
View File
@@ -84,7 +84,6 @@ checkFFmpeg().then((ffmpegPath) => {
ffmpeg.stderr.on('data', (data) => {
const msg = data.toString();
logError(`[FFmpeg stderr]: ${msg}`);
// Detect frozen timestamps
const match = msg.match(/time=(\d\d):(\d\d):(\d\d\.\d+)/);