Live view works but no recordings or events #20520
Replies: 2 comments
-
|
The issue is in your configuration - you have detection disabled for both cameras, which prevents any recordings or events from being created. Here's what needs to be fixed: Your current config shows: cameras:
front_door_camera:
enabled: true
ffmpeg:
inputs:
- path: xxx
roles:
- detect
detect:
enabled: false # <---- This is preventing recordings
width: 1280
height: 720To enable recordings and events, you need to:
cameras:
front_door_camera:
ffmpeg:
inputs:
- path: your_camera_rtsp_url_here
roles:
- detect
- record
detect:
enabled: true
width: 1280
height: 720
record:
enabled: true
retain:
days: 3The key issue is that Frigate uses motion detection as a first line check to determine when to run object detection, and object detection drives the creation of recordings and events (3). With detection disabled, no motion analysis or object detection occurs, so no recordings or events are generated. Your logs show the system is working correctly - both Coral TPUs are detected and functioning, and the cameras are providing live feeds. You just need to enable the detection and recording features in your configuration. 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
sorry, wrong file. here is the current one: detectors: cameras: back_door_camera: # <------ Second camera detect: version: 0.16-0 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the problem you are having
I am a total novice and finally got the dualedge tpu to work with frigate on ubuntu 24..4.3. Live view works, however, there are no recordings or clips/events. I have a partition on a nvme for events and a ssd for cont recordings.
My docker compose file:
version: "3.9"
services:
frigate:
container_name: frigate
image: ghcr.io/blakeblackshear/frigate:stable
restart: unless-stopped
ipc: host # <-- ADDED: This is the main fix for the permission error
user: "1000:1000"
Frigate media split:
/mnt/frigate-ssd/recordings/
/var/lib/frigate/
ls -l /mnt/frigate-ssd/recordings/
ls -l /var/lib/frigate/
total 0
total 32
drwxr-xr-x 2 root root 4096 Oct 15 17:31 cache
drwxrwxr-x 2 sapan sapan 16384 Oct 15 12:41 lost+found
drwxr-xr-x 4 root root 4096 Oct 15 17:31 previews
drwxr-xr-x 2 root root 4096 Oct 15 17:31 review
drwxr-xr-x 2 root root 4096 Oct 15 17:31 thumbs
sapan@nicomen:~$
Version
0.16.2-4d58206
Frigate config file
Relevant Frigate log output
Relevant go2rtc log output
Frigate stats
No response
Operating system
Debian
Install method
Docker Compose
docker-compose file or Docker CLI command
Object Detector
Coral
Screenshots of the Frigate UI's System metrics pages
Any other information that may be helpful
No response
Beta Was this translation helpful? Give feedback.
All reactions