From 2fdb653496c1db5aac09b031a95d58073a3c99bc Mon Sep 17 00:00:00 2001 From: Dominic Date: Thu, 30 May 2024 11:13:12 +0200 Subject: [PATCH] seek_streams_individually can also happen with .mov files --- src/render/ffmpeg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/ffmpeg.rs b/src/render/ffmpeg.rs index cb7684d..42af84b 100644 --- a/src/render/ffmpeg.rs +++ b/src/render/ffmpeg.rs @@ -41,7 +41,7 @@ impl FfmpegInput { cmd.arg("-r").arg(fps.to_string()); } if let Some(start) = self.start { - if self.path.ends_with(".mp4") { + if self.path.ends_with(".mp4") || self.path.ends_with(".mov") { cmd.arg("-seek_streams_individualy").arg("false"); } cmd.arg("-ss").arg(format_time(start));