From 4b9690938d10b3738c288ddc4f3fcea67392b477 Mon Sep 17 00:00:00 2001 From: chaos Date: Fri, 20 Oct 2023 16:54:00 +0100 Subject: [PATCH] remove debug prints --- src/utils/transcoder/transcoder.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/transcoder/transcoder.rs b/src/utils/transcoder/transcoder.rs index 6fdaaf1..8d36f08 100644 --- a/src/utils/transcoder/transcoder.rs +++ b/src/utils/transcoder/transcoder.rs @@ -44,7 +44,6 @@ pub fn transcode( } if let Some(album_art_codec) = &config.album_art_codec { - println!("{}", album_art_codec); command_args.extend(vec!["-c:v".to_string(), album_art_codec.to_string()]); if config.album_art_height.is_some() && config.album_art_width.is_some() { @@ -59,7 +58,6 @@ pub fn transcode( } command_args.extend(vec!["-vf".to_string(), format!("scale={}:{}", width, height)]); - println!("{:#?}", command_args); } }