From 82bfd8fd5d9f480279acea0b898d28c5e9d8fcca Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 13 Oct 2022 16:45:56 -0600 Subject: [PATCH] Disable RTMP by default and use restream --- frigate/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/config.py b/frigate/config.py index cf1362280..fd78d65e0 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -514,7 +514,7 @@ class CameraMqttConfig(FrigateBaseModel): class RtmpConfig(FrigateBaseModel): - enabled: bool = Field(default=True, title="RTMP restreaming enabled.") + enabled: bool = Field(default=False, title="RTMP restreaming enabled.") class RestreamConfig(FrigateBaseModel):