seek_streams_individually can also happen with .mov files
All checks were successful
Trigger quay.io Webhook / run (push) Successful in 6s
All checks were successful
Trigger quay.io Webhook / run (push) Successful in 6s
This commit is contained in:
parent
cbdf55335a
commit
2fdb653496
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue