hide ffmpeg command output in release mode

This commit is contained in:
djkato 2024-07-27 19:13:40 +02:00
parent a05dba3518
commit 0083da10a0

View file

@ -267,7 +267,9 @@ impl FFMPEGCommand {
.to_str()
.context("missing or bad path")?,
]);
#[cfg(debug_assertions)]
dbg!(&command);
#[cfg(debug_assertions)]
dbg!(&command2);
Ok(FFMPEGCommand {
file_name: path.file_name().unwrap().to_str().unwrap().to_owned(),