From 3cc8d1886db6543e0261b2fa3d451511d513cbce Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 16 Sep 2023 11:20:37 -0600 Subject: [PATCH] Fix spacing --- frigate/record/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/record/export.py b/frigate/record/export.py index bbbf08470..6ead93011 100644 --- a/frigate/record/export.py +++ b/frigate/record/export.py @@ -62,7 +62,7 @@ class RecordingExporter(threading.Thread): if (self.end_time - self.start_time) <= MAX_PLAYLIST_SECONDS: playlist_lines = f"http://127.0.0.1:5000/vod/{self.camera}/start/{self.start_time}/end/{self.end_time}/index.m3u8" ffmpeg_input = ( - f"-y -protocol_whitelist pipe,file,http,tcp -i {playlist_lines}" + f" -y -protocol_whitelist pipe,file,http,tcp -i {playlist_lines}" ) else: playlist_lines = []