Hey everyone, I’ve been working on setting up Frigate alongside Home Assistant and I’m running into an issue with the live feed. I’ve got Frigate installed on a separate Raspberry Pi and I’m using MQTT to integrate everything into HA. Most of the entities are working perfectly—I can view clips and everything else through the Media Browser. However, when I try to access the live feed, it just doesn’t work. I’ve tried adjusting the RTMP URL template, but it doesn’t seem to make a difference. Any ideas on what might be going wrong or the next steps I should take to diagnose this issue?
Here’s a quick overview of my setup:
Frigate Configuration:
version: “3.9”
services:
frigate:
container_name: frigate
privileged: true
restart: unless-stopped
image: blakeblackshear/frigate:stable-armv7
shm_size: “256mb”
devices:
- /dev/bus/usb:/dev/bus/usb
volumes:
- /etc/localtime:/etc/localtime:ro
- /home/administrator:/config
- /mnt/nvr:/media/frigate
- /etc/frigate:/db
ports:
- “1935:1935”
- “5000:5000”
- “5001:5001”
- “8080:8080”
environment:
FRIGATE_RTSP_PASSWORD: “Redacted”
Home Assistant Configuration:
cameras:
front_camera:
ffmpeg:
inputs:
- path: rtsp://Redacted:{FRIGATE_RTSP_PASSWORD}@192.168.50.10:554/cam/realmonitor?channel=1&subtype=0
roles: [record]
- path: rtsp://Redacted:{FRIGATE_RTSP_PASSWORD}@192.168.50.10:554/cam/realmonitor?channel=1&subtype=1
roles: [rtmp]
- path: rtsp://Redacted:{FRIGATE_RTSP_PASSWORD}@192.168.50.10:554/cam/realmonitor?channel=1&subtype=2
roles: [detect]
Any help or suggestions would be greatly appreciated! I’m really stuck here and would love to get this working properly.