[Question]: Unable to find manual recording video #20505
-
Checklist
Describe the problem you are havingA click on the "Start on-demand recording" button generate a new event with the On Demand type but no recording is generated (I check in the recording segment). I spot something unusual in one of my camera (inside a motion mask zone) and I immediately think at this button to force the recording. Steps to reproduce
Version0.17.0-657a68978 In which browser(s) are you experiencing the issue with?Google chrome Frigate config filerecord:
enabled: true
alerts:
retain:
days: 30
pre_capture: 15
post_capture: 15
detections:
retain:
days: 30
pre_capture: 15
post_capture: 15
continuous:
days: 0
motion:
days: 15docker-compose file or Docker CLI commandservices:
frigate:
container_name: frigate
privileged: true
image: docker.io/library/frigate:latest
shm_size: "1.5gb"
devices:
- /dev/dri/renderD128
volumes:
- /etc/localtime:/etc/localtime:ro
- /home/xavan/frigate/config16:/config/
- /extend/media16:/media/frigate
- /home/xavan/frigate/db16:/db
- type: tmpfs
target: /tmp/cache
tmpfs:
size: 1.5g
ports:
- "5000:5000"
- "1935:1935"
- "1984:1984" #go2rtc
- "8554:8554"
restart: unless-stoppedRelevant Frigate log outputerror | 2025-10-15 16:46:18 | frigate.api.media | No recordings found for sonnette during the requested time range
info | 2025-10-15 16:46:18 | logging | Last message repeated 1 timesRelevant go2rtc log outputNAOperating systemOther Linux Install methodDocker Compose Network connectionWired Camera make and modelHikvision, reolink Screenshots of the Frigate UI's System metrics pages
Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
|
Based on your configuration, the issue is likely related to your recording retention settings. Your configuration shows: record:
enabled: true
alerts:
retain:
days: 30
pre_capture: 15
post_capture: 15
detections:
retain:
days: 30
pre_capture: 15
post_capture: 15
continuous:
days: 0
motion:
days: 15The problem is that you have Frigate stores recordings at Since on-demand recording was implemented in Frigate 0.16(2), and manual events can be created via the Frigate API(2), the feature should work. However, your current configuration may not be retaining the recordings because they don't match your retention policies. To resolve this, consider adjusting your recording configuration to include some basic recording retention: record:
enabled: true
retain:
days: 3
mode: motionThis would ensure that recordings containing motion are retained for 3 days, which should allow your on-demand recordings to be saved and accessible(1). 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
The default for |
Beta Was this translation helpful? Give feedback.

implementation ended up changing a bit, if you update to the latest this will work as you expect