[Config Support]: First camera listed in frigate ui gets extra features/preview resolution and 2 way audio etc despite identical camera configs #21444
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The issue you're experiencing where the first camera gets extra features like higher preview resolution and two-way audio is related to how the When you define streams in go2rtc and want to use them for Live view, you need to explicitly configure the From your config, I can see you have go2rtc streams defined (doorbell, doorbell2, doorbell3, fisheye, etc.), but you haven't configured the To fix this, add the cameras:
doorbell:
live:
streams:
main_stream: doorbell
ffmpeg:
inputs:
# ... rest of your configFor cameras that support two-way audio (like your Reolink Doorbells), you should configure them with both the http-flv stream and an RTSP stream for WebRTC support(3): go2rtc:
streams:
doorbell:
- "ffmpeg:http://192.168.aa.103/flv?port=1935&app=bcs&stream=channel0_main.bcs&user=admin&password=password#video=copy#audio=copy#audio=opus"
- "rtsp://admin:password@192.168.aa.103/Preview_01_sub"
doorbell_sub:
- "ffmpeg:http://192.168.aa.103/flv?port=1935&app=bcs&stream=channel0_ext.bcs&user=admin&password=password"
- "rtsp://admin:password@192.168.aa.103/Preview_01_sub"
cameras:
doorbell:
live:
streams:
main: doorbell
sub: doorbell_subThe key points are:
📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.




The issue you're experiencing where the first camera gets extra features like higher preview resolution and two-way audio is related to how the
live -> streamsconfiguration works in Frigate(1).When you define streams in go2rtc and want to use them for Live view, you need to explicitly configure the
live -> streamssetting for each camera(1). The first stream entry you define becomes the default for the Live dashboard(1).From your config, I can see you have go2rtc streams defined (doorbell, doorbell2, doorbell3, fisheye, etc.), but you haven't configured the
live -> streamssetting under each camera configuration(1).To fix this, add the
liveconfiguration to each camera. For example:c…