remove debug prints
This commit is contained in:
parent
50a5e0e778
commit
4b9690938d
|
@ -44,7 +44,6 @@ pub fn transcode(
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(album_art_codec) = &config.album_art_codec {
|
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()]);
|
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() {
|
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)]);
|
command_args.extend(vec!["-vf".to_string(), format!("scale={}:{}", width, height)]);
|
||||||
println!("{:#?}", command_args);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue