diff --git a/src/recorders/ffmpeg_reader.py b/src/recorders/ffmpeg_reader.py index 8015726c..e9856f6f 100644 --- a/src/recorders/ffmpeg_reader.py +++ b/src/recorders/ffmpeg_reader.py @@ -46,7 +46,7 @@ def get(self, prop): def probe(self): """ Probe the video device to get height and width info """ - # Running this command on ffmpeg unfortunatly returns with an exit code of 1, which is silly. + # Running this command on ffmpeg unfortunately returns with an exit code of 1, which is silly. # Returns an error code of 1 and this text: "/dev/video2: Immediate exit requested" args = ["ffmpeg", "-f", self.device_format, "-list_formats", "all", "-i", self.device_path] process = Popen(args, stdout=PIPE, stderr=PIPE)