From 9a58e39bf859351f16c19660291b0d6434b08260 Mon Sep 17 00:00:00 2001
From: Dominic <git@msrd0.de>
Date: Tue, 4 Jun 2024 09:47:58 +0200
Subject: [PATCH] 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.
---
 src/render/ffmpeg.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/render/ffmpeg.rs b/src/render/ffmpeg.rs
index 42af84b..63cea0c 100644
--- a/src/render/ffmpeg.rs
+++ b/src/render/ffmpeg.rs
@@ -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));
 		}
-- 
GitLab