From 5b393ed68c64e11e076c604e1a0c3e783c23041a Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 11 Oct 2025 14:38:18 -0600 Subject: [PATCH] Don't define camera by default --- frigate/config/config.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/frigate/config/config.py b/frigate/config/config.py index 23f77aa9d..7ce9c73b4 100644 --- a/frigate/config/config.py +++ b/frigate/config/config.py @@ -80,18 +80,7 @@ DEFAULT_CONFIG = """ mqtt: enabled: False -cameras: - name_of_your_camera: # <------ Name the camera - enabled: True - ffmpeg: - inputs: - - path: rtsp://10.0.10.10:554/rtsp # <----- The stream you want to use for detection - roles: - - detect - detect: - enabled: False # <---- disable detection until you have a working camera feed - width: 1280 - height: 720 +cameras: {} # No cameras defined, UI wizard should be used """ DEFAULT_DETECTORS = {"cpu": {"type": "cpu"}}