Skip to content
Snippets Groups Projects
Verified Commit 2fdb6534 authored by Dominic Meiser's avatar Dominic Meiser
Browse files

seek_streams_individually can also happen with .mov files

parent cbdf5533
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ impl FfmpegInput { ...@@ -41,7 +41,7 @@ impl FfmpegInput {
cmd.arg("-r").arg(fps.to_string()); cmd.arg("-r").arg(fps.to_string());
} }
if let Some(start) = self.start { 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("-seek_streams_individualy").arg("false");
} }
cmd.arg("-ss").arg(format_time(start)); cmd.arg("-ss").arg(format_time(start));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment