[Camera Support]: Unifi G4 Doorbell has incorrect thumbnail and live stream for package camera. #21564
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
|
Your issue involves the live view showing inconsistent streams between the doorbell and package cameras. Based on your configuration, there are several areas that need attention. First, your cameras:
front_door_package:
enabled: true
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/front_door_package
roles: [detect]This camera only has the cameras:
front_door_package:
enabled: true
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/front_door_package
roles:
- detect
- record
output_args:
record: preset-record-ubiquitiSecond, regarding your live view configuration, you've set up multiple streams correctly in the live:
streams:
Front Door: front_door
Package Cam: front_door_packageHowever, when you have multiple streams configured, Frigate's default dashboard ("All Cameras") will always use the first entry defined in For the inconsistent thumbnail/live stream behavior you're experiencing, this could be related to how go2rtc is handling the stream selection. When you click on a camera from the dashboard, Frigate attempts to display the live stream using the configured go2rtc streams.(3) Since both your For UniFi cameras, ensure you're using the correct stream paths for each camera.(4) The Additionally, the errors in your logs suggest preview generation issues:(3) This could contribute to thumbnail display problems. To troubleshoot further, access the go2rtc web interface at port 1984 and verify that both 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
Your |
Beta Was this translation helpful? Give feedback.





Your
live --> streamsdirective should not be defined at the global level of your config. It should be defined at the camera level. But since you only have a single stream per camera and you already match the camera names with the go2rtc stream names, I would remove it entirely. This is what is causing your issue.