commit c7e6cdb9a1e69a4027e68412c2fb06e4e5b058a9 Author: tonym Date: Wed Oct 1 22:03:31 2025 -0500 Add config.yml Per Claude - this is the working version we had with: ✅ CPU detector (working reliably) ✅ Auto-detecting resolution ✅ Object filters to reduce notification spam ✅ All your camera settings I have my doubts re: constantly detecting the truck diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..d0863fa --- /dev/null +++ b/config.yml @@ -0,0 +1,58 @@ +version: 0.15.0 + +mqtt: + host: 192.168.0.205 + port: 1883 + user: tonym + password: "tbhXM3131!" + topic_prefix: frigate + +ffmpeg: + hwaccel_args: preset-nvidia + input_args: preset-rtsp-generic + +detectors: + cpu: + type: cpu + num_threads: 3 + +objects: + track: + - person + +birdseye: + enabled: false + +cameras: + front: + ffmpeg: + inputs: + - path: "rtsp://admin:tbhXM3131!@192.168.0.118:554/cam/realmonitor?channel=1&subtype=1" + roles: [detect] + - path: "rtsp://admin:tbhXM3131!@192.168.0.118:554/cam/realmonitor?channel=1&subtype=0" + roles: [record] + live: + stream_name: record + quality: 10 + height: 1080 + detect: + enabled: true + snapshots: + enabled: true + timestamp: true + bounding_box: true + record: + enabled: true + retain: + days: 5 + mode: motion + objects: + filters: + person: + min_area: 1000 + max_area: 100000 + min_score: 0.6 + threshold: 0.8 + stationary: + interval: 50 + threshold: 30 \ No newline at end of file