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": ...,