Live camera view, buttons are greyedou #21333
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
The greyed-out buttons in your live view indicate missing or incomplete go2rtc configuration. The buttons become available when specific streaming technologies and features are properly set up(1). To enable these buttons, you need to configure go2rtc in your Frigate setup(1). The live view uses three different streaming technologies, and the highest quality experience requires go2rtc to be configured(1). Here's what you need to add to your configuration: go2rtc:
streams:
your_camera_name:
- rtsp://username:password@camera_ip:554/stream_path
- "ffmpeg:your_camera_name#audio=opus"For the camera configuration, reference the go2rtc stream: cameras:
your_camera_name:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/your_camera_name
input_args: preset-rtsp-restream
roles:
- recordThe buttons require specific configurations(1):
Check your camera's audio codec settings and ensure it outputs AAC audio for best compatibility(1). If your camera doesn't support AAC, you can transcode using the ffmpeg source in go2rtc(1). 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
How do you have Frigate installed? Are you running behind a proxy? |
Beta Was this translation helpful? Give feedback.
The "enabled" button is not grayed out though, and is indicative of the camera being disabled.
In code, the only reason all the buttons would be disabled is if the camera itself was marked as disabled.
I'd first make sure that websockets are working properly with your setup. Frigate uses websockets extensively, and if websockets are not passing data, this would explain what you are seeing.