diff --git a/src/video/ffmpeg.rs b/src/video/ffmpeg.rs index 44d0803..49e1875 100644 --- a/src/video/ffmpeg.rs +++ b/src/video/ffmpeg.rs @@ -114,6 +114,8 @@ where .arg("0") // Allow absolute paths .arg("-i") .arg(concat_path) + .arg("-r") + .arg(config.framerate.to_string()) .arg("-c:v") .arg(&config.codec) .arg("-crf")