refactor: remove unused stderr variable from ffprobe output capture

This commit is contained in:
Esa Kataja
2025-08-23 00:04:30 +03:00
parent 477718cb34
commit a7047b5175
+1 -1
View File
@@ -22,7 +22,7 @@ function analyzeVideo(videoFile: string): VideoInfo {
videoFile,
];
const process = new Deno.Command(cmd, { args });
const { stdout, stderr } = process.outputSync();
const { stdout } = process.outputSync();
const videoInfo = JSON.parse(new TextDecoder().decode(stdout));
return videoInfo;
}