From 4b388b5bae9ca457384d7cc0c8102bd317e79b10 Mon Sep 17 00:00:00 2001 From: Arnaud_Cayrol Date: Mon, 16 Feb 2026 18:00:22 +0100 Subject: [PATCH] Fixed framerate setting not being used --- src/video/ffmpeg.rs | 2 ++ 1 file changed, 2 insertions(+) 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")