Disable RTMP by default and use restream

This commit is contained in:
Nick Mowen 2022-10-13 16:45:56 -06:00
parent eae7123cf3
commit 82bfd8fd5d

View File

@ -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):