[Config Support]: Can't seem to stop continuous recording #22817
Replies: 2 comments 1 reply
|
The issue is that your global To only record when there's motion or tracked objects, you need to explicitly disable continuous recording by setting record:
enabled: true
continuous:
days: 0
motion:
days: 7
alerts:
retain:
days: 7
mode: all
detections:
retain:
days: 7
mode: allThe Additionally, note that new recording segments are written from the camera stream to cache first, and they are only moved to disk if they match the configured recording retention policy. 📚 Sources: Have another question? Just tag @inkeep. |
|
Your configuration looks correct for motion-only recording. However, it's important to understand that Frigate always writes new recording segments from the camera stream to cache first—they are only moved to disk if they match the configured recording retention policy. (1) With A few things to verify:
record:
enabled: true
expire_interval: 10
continuous:
days: 0
motion:
days: 7
alerts:
retain:
days: 7
mode: all
detections:
retain:
days: 7
mode: all
record:
enabled: true
sync_recordings: trueIf recordings are still being retained after waiting for a cleanup cycle, this may be a version-specific behavior change in 0.17 that isn't documented in the available sources. You may want to check the GitHub repository for any related discussions or release notes. 📚 Sources: Have another question? Just tag @inkeep. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Describe the problem you are having
I've tried a number of ways to adjust my config, but ever since upgrading to 0.17, I can't seem to get it to only do motion or object recording. It records continuously 24/7. What am I doing wrong?
Version
0.17.1
Frigate config file
Relevant Frigate log output
Relevant go2rtc log output
Frigate stats
No response
Operating system
Home Assistant OS
Install method
Home Assistant Add-on
docker-compose file or Docker CLI command
N/AObject Detector
Coral
Screenshots of the Frigate UI's System metrics pages
No response
Any other information that may be helpful
No response
All reactions