remove debug prints

This commit is contained in:
chaos 2023-10-20 16:54:00 +01:00
parent 50a5e0e778
commit 4b9690938d
No known key found for this signature in database

View file

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