[Config Support]: Sudden issues causing skipped frames and lost recordings #22745
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
|
Several issues are contributing to your problems: 1. Missing Detect Streams for Frontyard and Northside Your Add a detect stream for each camera. For example: cameras:
Frontyard:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/Frontyard
input_args: preset-rtsp-restream
roles:
- audio
- record
- path: rtsp://127.0.0.1:8554/Frontyard_sub # Add a sub stream for detect
input_args: preset-rtsp-restream
roles:
- detectYou'll need to add corresponding sub-streams in your 2. Northside Stream Connection Failures The go2rtc logs show audio codec negotiation failures for Northside: This indicates the camera's audio format isn't compatible. The ffmpeg watchdog is repeatedly restarting because no frames are being received. You may need to configure go2rtc to handle this stream differently or disable audio for this camera. 3. Hardware Acceleration Warning The startup warning "Did not detect hwaccel" suggests your GPU device may not be properly passed to the container. Verify that 4. Recording Segment Cache Issues The warning "Too many unprocessed recording segments in cache" typically indicates the detect stream can't keep up. (2) Since your copy times are fast (under 0.2 seconds), this confirms the root cause is the missing detect streams rather than storage performance. (2) 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
Summary of the resolution: Hardware: System/Software: I had the default i915 driver installed as comes with Ubuntu Jammy. To check your driver, use the following command This should return some info including a line similar to this. Note this previously said i915 instead of iHD. This driver is not capable of hwaccel. The "intel non free" driver is (in the same forum post above). This can be installed with this command I then restarted my system. Config update: I had to switch one camera to AAC audio as chromium browsers throw this error when trying to decode it during playback of whatever weird codec my camera was using. Note: |
Beta Was this translation helpful? Give feedback.





Summary of the resolution:
Hardware:
Intel W-1250 with UHD p630 integrated graphics
System/Software:
/dev/dri/renderD128 is present and accessible by Frigate.
I had the default i915 driver installed as comes with Ubuntu Jammy. To check your driver, use the following command
This should return some info including a line similar to this. Note this previously said i915 instead of iHD.
This driver is not capable of hwaccel.
https://discourse.ubuntu.com/t/please-tell-me-how-to-find-and-install-the-correct-graphics-driver-for-this-system/57038/11
The "intel non free" driver is (in the same forum post above).…