fix typo, thanks Dorian
All checks were successful
Trigger quay.io Webhook / run (push) Successful in 7s
All checks were successful
Trigger quay.io Webhook / run (push) Successful in 7s
This code path is currently unused given that we accumulate the input into a recording.mkv file that doesn't have the cursed mp4/mov behaviour.
This commit is contained in:
parent
2fdb653496
commit
9a58e39bf8
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ impl FfmpegInput {
|
|||
}
|
||||
if let Some(start) = self.start {
|
||||
if self.path.ends_with(".mp4") || self.path.ends_with(".mov") {
|
||||
cmd.arg("-seek_streams_individualy").arg("false");
|
||||
cmd.arg("-seek_streams_individually").arg("false");
|
||||
}
|
||||
cmd.arg("-ss").arg(format_time(start));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue