From c298c7c233617c5781e54670b90332271a4272be Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 22 Oct 2022 07:19:27 -0600 Subject: [PATCH] Remove live config --- frigate/config.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/frigate/config.py b/frigate/config.py index eaed45b7d..b228c12ea 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -555,9 +555,6 @@ class CameraConfig(FrigateBaseModel): restream: RestreamConfig = Field( default_factory=RestreamConfig, title="Restreaming configuration." ) - live: CameraLiveConfig = Field( - default_factory=CameraLiveConfig, title="Live playback settings." - ) snapshots: SnapshotsConfig = Field( default_factory=SnapshotsConfig, title="Snapshot configuration." ) @@ -779,9 +776,6 @@ class FrigateConfig(FrigateBaseModel): snapshots: SnapshotsConfig = Field( default_factory=SnapshotsConfig, title="Global snapshots configuration." ) - live: CameraLiveConfig = Field( - default_factory=CameraLiveConfig, title="Global live configuration." - ) rtmp: RtmpConfig = Field( default_factory=RtmpConfig, title="Global RTMP restreaming configuration." ) @@ -824,7 +818,6 @@ class FrigateConfig(FrigateBaseModel): "birdseye": ..., "record": ..., "snapshots": ..., - "live": ..., "rtmp": ..., "restream": ..., "objects": ...,