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

fix typo, thanks Dorian

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.
parent 2fdb6534
No related branches found
No related tags found
No related merge requests found
......@@ -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));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment