No live view in single camera view #20933
-
|
Hi, Thanks for your help ! `mqtt: detectors: snapshots: ffmpeg: cameras: Cuisine: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
Based on your configuration, the issue is that you're missing the Your current setup only has a Here's what you need to add to your configuration: go2rtc:
streams:
Salon:
- rtsp://XXX/stream1
Salon_sub:
- rtsp://XXX/stream2
Cuisine:
- rtsp://XXX/stream1
Cuisine_sub:
- rtsp://XXX/stream2
cameras:
Salon:
enabled: true
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/Salon_sub
input_args: preset-rtsp-restream
roles:
- detect
- path: rtsp://127.0.0.1:8554/Salon
input_args: preset-rtsp-restream
roles:
- record
live:
streams:
Main Stream: Salon
Sub Stream: Salon_sub
# ... rest of your config
Cuisine:
enabled: true
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/Cuisine_sub
input_args: preset-rtsp-restream
roles:
- detect
- path: rtsp://127.0.0.1:8554/Cuisine
input_args: preset-rtsp-restream
roles:
- record
live:
streams:
Main Stream: Cuisine
Sub Stream: Cuisine_sub
# ... rest of your configThe spinning circle you're seeing indicates that Frigate is attempting to load the MSE live stream but timing out, which causes it to fall back to "low bandwidth mode".(1) Without After adding the 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
Are you behind a proxy? Frigate uses websockets for connecting to your live streams. The most common reason for this failing in your case is that websockets are disabled or blocked.