[Config Support]: Live view works but no recordings or events #20521
-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 3 replies
-
|
Looking at your configuration and logs, the issue is that you don't have recording enabled in your configuration. Your current config only has Here's what you need to add to your configuration: mqtt:
enabled: false
detectors:
coral1:
type: edgetpu
device: pci:0
coral2:
type: edgetpu
device: pci:1
cameras:
front_door_camera:
enabled: true
ffmpeg:
inputs:
- path: rxxxx
roles:
- record
- path: rxxx
roles:
- detect
detect:
enabled: true
width: 1280
height: 720
record:
enabled: True
back_door_camera:
enabled: true
ffmpeg:
inputs:
- path: xxx
roles:
- detect
- record
detect:
enabled: true
width: 1280
height: 720
record:
enabled: True
detect:
enabled: trueThe key changes are:
According to the documentation: "To enable recording video, add the For your Additionally, if you want to see events in the Review section, you should ensure that objects are being detected. The logs show your detectors are working ( By default, Frigate will retain video of all tracked objects for 10 days once recording is enabled(1). 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
so if i am reading the docker compose example above, there is no way to have the detections go to the nvme and the cont recording to the ssd? |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for your reply. This clear things up a lot. I have no exp with Frigate and this is my first attempt to set something like this up. Question: Can I have frigate record to the 1.3T partition on the nvme, and then run a script every 10 days or so that stops frigate, looks at any videos older than 10 days and move those to the ssd? I don't see a reason why I can't. Also if I understand this now, even if I set up Frigate to delete cont recordings after 10 days, there is a database that stores the detections separately and thus can hold on to these for longer? |
Beta Was this translation helpful? Give feedback.
-
|
thanks again |
Beta Was this translation helpful? Give feedback.


These are not valid mount points. Frigate records to
/media/frigate, not/media/eventsor/media/recordings.See the Docker compose file in the official documentation: https://docs.frigate.video/frigate/installation/#docker