From 64499e5adf10353b38d6bfb5f2fee65ee46e3f6d Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 16 Feb 2023 15:11:09 -0700 Subject: [PATCH] Formatting --- frigate/config.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frigate/config.py b/frigate/config.py index 3b8f1f87d..70d85ff66 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -372,7 +372,14 @@ class BirdseyeCameraConfig(BaseModel): FFMPEG_GLOBAL_ARGS_DEFAULT = ["-hide_banner", "-loglevel", "warning", "-threads", "1"] FFMPEG_INPUT_ARGS_DEFAULT = "preset-rtsp-generic" -DETECT_FFMPEG_OUTPUT_ARGS_DEFAULT = ["-threads", "1", "-f", "rawvideo", "-pix_fmt", "yuv420p"] +DETECT_FFMPEG_OUTPUT_ARGS_DEFAULT = [ + "-threads", + "1", + "-f", + "rawvideo", + "-pix_fmt", + "yuv420p", +] RTMP_FFMPEG_OUTPUT_ARGS_DEFAULT = "preset-rtmp-generic" RECORD_FFMPEG_OUTPUT_ARGS_DEFAULT = "preset-record-generic"