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; }