this post was submitted on 23 Mar 2026
1 points (100.0% liked)

Home Assistant

265 readers
1 users here now

Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY...

founded 2 years ago
MODERATORS
 
This is an automated archive made by the Lemmit Bot.

The original was posted on /r/homeassistant by /u/imthenachoman on 2026-03-22 20:34:01+00:00.


I have my Reolink cameras set to record to a microSD card on the camera. If I ever need to see footage, I can get it from there.

I only want Frigate to detect things. I think I have my config.yml right but I'm not sure?

If it matters, my server is a Dell Inspiron 3880 with an i7-10700 CPU and 64 GB of ram. Attached is my Docker Compose file. I do not have any GPU or special detectors for Frigate installed. I want to use my CPU/GPU for Frigate. And everything is running as a Docker container.

mqtt:
 host: mosquitto
 port: 1883
 topic\_prefix: [redacted]
 client\_id: [redacted]

go2rtc:
 streams:
 e1\_zoom\_20\_sub:
 - rtsp://dingo:[bingo@192.168.30.20](mailto:bingo@192.168.30.20):554/h264Preview\_01\_sub
 e1\_zoom\_21\_sub:
 - rtsp://dingo:[bingo@192.168.30.21](mailto:bingo@192.168.30.21):554/h264Preview\_01\_sub
 duo\_22\_sub:
 - rtsp://dingo:[bingo@192.168.30.22](mailto:bingo@192.168.30.22):554/h264Preview\_01\_sub
 duo\_23\_sub:
 - rtsp://dingo:[bingo@192.168.30.23](mailto:bingo@192.168.30.23):554/h264Preview\_01\_sub
 duo\_24\_sub:
 - rtsp://dingo:[bingo@192.168.30.24](mailto:bingo@192.168.30.24):554/h264Preview\_01\_sub

detectors:
 cpu1:
 type: cpu

ffmpeg:
 hwaccel\_args: preset-vaapi

record:
 enabled: false

snapshots:
 enabled: false

objects:
 track:
 - person
 - car

cameras:

e1\_zoom\_20:
 ffmpeg:
 inputs:
 - path: rtsp://127.0.0.1:8554/e1\_zoom\_20\_sub
 input\_args: preset-rtsp-restream
 roles:
 - detect
 detect:
 width: 640
 height: 360
 fps: 5

e1\_zoom\_21:
 ffmpeg:
 inputs:
 - path: rtsp://127.0.0.1:8554/e1\_zoom\_21\_sub
 input\_args: preset-rtsp-restream
 roles:
 - detect
 detect:
 width: 640
 height: 360
 fps: 5

duo\_22:
 ffmpeg:
 inputs:
 - path: rtsp://127.0.0.1:8554/duo\_22\_sub
 input\_args: preset-rtsp-restream
 roles:
 - detect
 detect:
 width: 640
 height: 360
 fps: 5

duo\_23:
 ffmpeg:
 inputs:
 - path: rtsp://127.0.0.1:8554/duo\_23\_sub
 input\_args: preset-rtsp-restream
 roles:
 - detect
 detect:
 width: 640
 height: 360
 fps: 5

duo\_24:
 ffmpeg:
 inputs:
 - path: rtsp://127.0.0.1:8554/duo\_24\_sub
 input\_args: preset-rtsp-restream
 roles:
 - detect
 detect:
 width: 640
 height: 360
 fps: 5
no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here