fix typo, thanks Dorian
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:
Dominic 2024-06-04 09:47:58 +02:00
parent 2fdb653496
commit 9a58e39bf8
Signed by: msrd0
GPG key ID: AAF7C8430CA3345D

View file

@ -42,7 +42,7 @@ impl FfmpegInput {
} }
if let Some(start) = self.start { if let Some(start) = self.start {
if self.path.ends_with(".mp4") || self.path.ends_with(".mov") { 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)); cmd.arg("-ss").arg(format_time(start));
} }