From 2c4906685e33620c273014493cf094b767d27b54 Mon Sep 17 00:00:00 2001 From: Sam Lavigne Date: Wed, 23 Aug 2023 18:23:07 -0400 Subject: [PATCH] remove consoles --- src/App.svelte | 4 +--- src/FilterPicker.svelte | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index cc0acf8..0002249 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -45,7 +45,6 @@ await ffmpeg.writeFile(vid, await fetchFile("/" + vid)); } const clist = commandList(); - console.log(clist); await ffmpeg.exec(clist, TIMEOUT); // await ffmpeg.exec(["-f", "lavfi", "-i", "color=size=1280x720:rate=25:color=red", "-t", "5", "out.mp4"]) const data = await ffmpeg.readFile("out.mp4"); @@ -59,7 +58,7 @@ async function loadFFmpeg() { ffmpeg.on("log", ({ message: msg }) => { - console.log(msg); + // console.log(msg); log += msg + "\n"; logbox.scrollTop = logbox.scrollHeight; }); @@ -76,7 +75,6 @@ workerURL: await toBlobURL(`${baseURL}/ffmpeg-core.worker.js`, "text/javascript"), }); } - console.log(ffmpeg); ffmpegLoaded = true; } diff --git a/src/FilterPicker.svelte b/src/FilterPicker.svelte index 1efed34..0f8ba8e 100644 --- a/src/FilterPicker.svelte +++ b/src/FilterPicker.svelte @@ -35,7 +35,6 @@ }); } $filters = [...$filters, newFilter]; - console.log(newFilter); } function update() {