- Add bird to tracked objects (catches escaped chickens/ducks) - Add DHCP reservation comment for GableCam IP - Remove explicit detect dimensions (Frigate auto-detects from stream) - Reorganize homepage groups: ArgoCD/Prometheus/PyPI to Infrastructure, CV/Docs/TeslaMate/Transmission to Services Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: frigate-config
|
|
namespace: frigate
|
|
data:
|
|
config.yml: |
|
|
mqtt:
|
|
host: mosquitto.mqtt.svc.cluster.local
|
|
port: 1883
|
|
|
|
go2rtc:
|
|
streams:
|
|
# GableCam IP is reserved in UX7 DHCP config
|
|
gablecam:
|
|
- "ffmpeg:http://{FRIGATE_CAMERA_USER}:{FRIGATE_CAMERA_PASSWORD}@192.168.1.159/flv?port=1935&app=bcs&stream=channel0_main.bcs#video=copy#audio=copy#audio=opus"
|
|
gablecam_sub:
|
|
- "ffmpeg:http://{FRIGATE_CAMERA_USER}:{FRIGATE_CAMERA_PASSWORD}@192.168.1.159/flv?port=1935&app=bcs&stream=channel0_sub.bcs"
|
|
|
|
cameras:
|
|
gablecam:
|
|
enabled: true
|
|
ffmpeg:
|
|
inputs:
|
|
- path: rtsp://127.0.0.1:8554/gablecam
|
|
input_args: preset-rtsp-restream
|
|
roles: [record]
|
|
- path: rtsp://127.0.0.1:8554/gablecam_sub
|
|
input_args: preset-rtsp-restream
|
|
roles: [detect]
|
|
detect:
|
|
enabled: true
|
|
objects:
|
|
track: [person, car, dog, cat, bird]
|
|
|
|
detectors:
|
|
onnx:
|
|
type: onnx
|
|
|
|
record:
|
|
enabled: true
|
|
retain:
|
|
days: 3
|
|
mode: all
|
|
alerts:
|
|
retain:
|
|
days: 30
|
|
mode: active_objects
|
|
detections:
|
|
retain:
|
|
days: 14
|
|
mode: motion
|
|
|
|
snapshots:
|
|
enabled: true
|
|
retain:
|
|
default: 14
|