From e8d8692f402ecce455a8248789645ed752535bac Mon Sep 17 00:00:00 2001 From: boltgolt Date: Sun, 6 Jan 2019 16:32:18 +0100 Subject: [PATCH] Typo fix --- src/recorders/ffmpeg_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/recorders/ffmpeg_reader.py b/src/recorders/ffmpeg_reader.py index 8015726..e9856f6 100644 --- a/src/recorders/ffmpeg_reader.py +++ b/src/recorders/ffmpeg_reader.py @@ -46,7 +46,7 @@ class ffmpeg_reader: 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)