From a7047b51756f92b6ce4d123f9b0318821438dbdc Mon Sep 17 00:00:00 2001 From: Esa Kataja Date: Sat, 23 Aug 2025 00:04:30 +0300 Subject: [PATCH] refactor: remove unused stderr variable from ffprobe output capture --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index a355d1c..fbc049a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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; }