From 7395a1f60fab6e18976797ff2bab087c7e883f64 Mon Sep 17 00:00:00 2001 From: Bingus_Violet Date: Wed, 17 Jan 2024 20:03:47 -0600 Subject: [PATCH] Hide debug lines --- index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index cb1ff9f..edcbeaa 100644 --- a/index.js +++ b/index.js @@ -31,10 +31,10 @@ app.get("/convert", async (req, res) => { ], }) - ffmpegProcess.stderr.setEncoding('utf-8') - ffmpegProcess.stderr.on('data', (data) => { - console.log(data) - }) + // ffmpegProcess.stderr.setEncoding('utf-8') + // ffmpegProcess.stderr.on('data', (data) => { + // console.log(data) + // }) // These are debugging lines to watch FFMPEG output :3 ffmpegProcess.stdio[1].pipe(res)