From a174d82eb9d444030127eeb706f8beae9642198f Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 5 Mar 2024 07:11:08 -0700 Subject: [PATCH] Disable hvc check (#10260) --- frigate/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/config.py b/frigate/config.py index fa2d5fe85..85377b2f9 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -1224,7 +1224,7 @@ class FrigateConfig(FrigateBaseModel): camera_config.ffmpeg.hwaccel_args = config.ffmpeg.hwaccel_args for input in camera_config.ffmpeg.inputs: - need_record_fourcc = "record" in input.roles + need_record_fourcc = False and "record" in input.roles need_detect_dimensions = "detect" in input.roles and ( camera_config.detect.height is None or camera_config.detect.width is None