ffmpeg/
ffmpeg.rs

1use printable_shell_command::{PrintableShellCommand, ShellPrintable};
2
3fn main() {
4    let _ = PrintableShellCommand::new("ffmpeg")
5        .args(["-i", "./test/My video.mp4"])
6        .args(["-filter:v", "setpts=2.0*PTS"])
7        .args(["-filter:a", "atempo=0.5"])
8        .arg("./test/My video (slow-mo).mov")
9        .print_invocation()
10        .unwrap();
11}