[Config Support]: Frigate just as a recorder, no detection stream #20367
Replies: 1 comment 12 replies
-
|
This is expected behavior. Even when object detection is disabled, Frigate still requires a detect stream for several core features. According to the documentation, "Frigate will always decode a stream to support motion detection, Birdseye, the API image endpoints, and other features, even if you have disabled object detection with The ffmpeg process you're seeing with the To minimize resource usage while using Frigate purely for recording, you should explicitly define a low-resolution detect stream alongside your record stream: cameras:
cam_1:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/cam_1
roles:
- record
- path: rtsp://127.0.0.1:8554/cam_1_substream # Low resolution stream
roles:
- detect
detect:
enabled: False # Disable object detection
width: 640 # Small resolution
height: 480
fps: 5As noted in the documentation: "If you only plan to use Frigate for recording, it is still recommended to define a The OpenVINO logs you're seeing are likely from the default CPU detector initialization, even though detection is disabled. This is normal system behavior and shouldn't significantly impact performance when detection is disabled. 📚 Sources: Have another question? Just tag @inkeep. |
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 want Frigate to act only as a recorder: no detection, no alerts, nothing fancy. Although I (seemingly) have all the detections disabled, Frigate still spwans ffmpeg processes that I believe are for detection, since they reduce fps and changes scale. There are also OpenVINO logs outputted.
Sample of ffmpeg argument:
I would like to know if this is a bug, or there is something I need to fix in my config to reduce the resource usage.
UNRELATED: Frigate should improve the recording management, since all the "Explore" and "Review" sections are tailored to alerts, but records could also make an appearance here.
Version
0.16.1-e664cb2
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
CPU (no coral)
Screenshots of the Frigate UI's System metrics pages
No response
Any other information that may be helpful
No response
Beta Was this translation helpful? Give feedback.
All reactions