diff --git a/lib/src/utils/mod.rs b/lib/src/utils/mod.rs index fc5ee454..5a78ed58 100644 --- a/lib/src/utils/mod.rs +++ b/lib/src/utils/mod.rs @@ -564,10 +564,7 @@ fn is_in_system(name: &str) -> Result<(), String> { fn ffmpeg_libs() -> Result, String> { let mut libs: Vec = vec![]; - let mut ff_proc = match Command::new("ffmpeg") - .stderr(Stdio::piped()) - .spawn() - { + let mut ff_proc = match Command::new("ffmpeg").stderr(Stdio::piped()).spawn() { Err(e) => { return Err(format!("couldn't spawn ffmpeg process: {e}")); }