[Support]: Clips not being saved anymore #19620
Replies: 3 comments 21 replies
|
Looking at your configuration, I can identify the issue. Your camera configuration only has the According to the Frigate documentation, recording requires object detection to be enabled. In your config, you have ffmpeg:
inputs:
- path: rtsp://admin@cam.cool.xyz:8554/stream0
roles:
- recordTo fix this, you need to add the ffmpeg:
inputs:
- path: rtsp://admin@cam.cool.xyz:8554/stream0
roles:
- record
- detectThe documentation shows that both roles can be assigned to the same stream, as demonstrated in the configuration examples(1). Without the detect role, Frigate cannot perform motion detection, which is required for the recording functionality to work properly. Additionally, make sure your camera has proper detect dimensions configured. You can add: detect:
width: 1280
height: 720
fps: 5This should resolve your recording issue while maintaining your existing snapshot functionality. 📚 Sources: Have another question? Just tag @inkeep. |
|
If recordings are not saved then there should be errors in logs |
|
Based on the error For Intel-based CPUs using hardware acceleration, the documentation shows that you need to ensure the correct driver is being used(1). The default driver is Here's how to add this to your docker-compose configuration: services:
frigate:
container_name: frigate
# ... your existing config ...
environment:
FRIGATE_RTSP_PASSWORD: "12345!admin12345"
LIBVA_DRIVER_NAME: i965 # Add this lineThe documentation also indicates that for Intel CPUs, different generations have different recommended configurations(1):
Since you're getting the Additionally, ensure your 📚 Sources: Have another question? Just tag @inkeep. |
Uh oh!
There was an error while loading. Please reload this page.
Checklist
Describe the problem you are having
My events and clips are being seen and saved (the snapshots work) since 3 days ago (16.08.2025) frigate suddenly stopped saving my recordings:
Steps to reproduce
Use my config
Version
0.16.0
In which browser(s) are you experiencing the issue with?
No response
Frigate config file
docker-compose file or Docker CLI command
Relevant Frigate log output
Relevant go2rtc log output
Operating system
Debian
Install method
Docker Compose
Network connection
Wired
Camera make and model
china off brand
Screenshots of the Frigate UI's System metrics pages
Any other information that may be helpful
This config worked prior to 16.8 without problems, snapshots are created any in my notifications i still see the snapshots, but the recordings are not saved anymore
All reactions