[Config Support]: Recordings with Audio only, Live view is with video #20753
Replies: 2 comments 4 replies
-
|
Does it keep happening after a reboot? We have only seen this when go2rtc only sends the audio due to a race condition |
Beta Was this translation helpful? Give feedback.
-
|
The issue appears to be with your go2rtc stream configuration. Your go2rtc streams are using Your current go2rtc configuration has: go2rtc:
streams:
D01_Main:
- "ffmpeg:rtsp://admin:[email protected]:554/stream1"
- "ffmpeg:D01_Main#audio=copy"This creates a circular reference where Try this corrected configuration: go2rtc:
streams:
D01_Main:
- rtsp://admin:[email protected]:554/stream1
- "ffmpeg:D01_Main#audio=opus"
D01_Sub:
- rtsp://admin:[email protected]:554/stream2
D02_Main:
- rtsp://admin:[email protected]:554/stream1
- "ffmpeg:D02_Main#audio=opus"
D02_Sub:
- rtsp://admin:[email protected]:554/stream2The key changes:
For cameras with AAC audio, the recommended configuration includes both the original stream with AAC audio and a transcoded version with opus audio to support both MSE and WebRTC.(3) If your cameras don't have audio and you're experiencing problems, you should configure go2rtc to send video only: go2rtc:
streams:
D01_Main:
- ffmpeg:rtsp://admin:[email protected]:554/stream1#video=copyAfter making these changes, restart Frigate and check if recordings now include video. 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Describe the problem you are having
As the title says. I believe it worked fine until my last update to the recent version, running in a docker container.
Recordings made have sound only. No video (the video 'track' is empty). But using the same stream for live viewing works fine, including video.
There is no error logged. I believe there is something misconfigured, but for the love of me, I can't figure out what!!
Version
0.16.2-4d58206
Frigate config file
Relevant Frigate log output
Relevant go2rtc log output
Frigate stats
No response
Operating system
Debian
Install method
Proxmox via Docker
docker-compose file or Docker CLI command
Object Detector
Coral
Screenshots of the Frigate UI's System metrics pages
No response
Any other information that may be helpful
No response
Beta Was this translation helpful? Give feedback.
All reactions