From d0275be1ff235d5a61e2a88733ab7884679e1dc0 Mon Sep 17 00:00:00 2001 From: Matthew Kim <38759997+friendlymatthew@users.noreply.github.com> Date: Mon, 28 Oct 2024 09:40:54 -0400 Subject: [PATCH] Remove unhelpful console, correctly display video frames of desired resolution --- burrito/worker.js | 1 - 1 file changed, 1 deletion(-) diff --git a/burrito/worker.js b/burrito/worker.js index 61488cb..2bfdfc2 100644 --- a/burrito/worker.js +++ b/burrito/worker.js @@ -3,7 +3,6 @@ let videoDecoder240p, videoDecoder480p, videoDecoder720p; async function setVideoDecoder(resolution, writer) { - console.log(`creating Video Decoder for `, {resolution}); const videoDecoder = new VideoDecoder({ output: async (frame) => {