Start recording on audio volume #22239
Replies: 3 comments
-
|
Yes, audio volume can trigger recordings in Frigate. When audio volume exceeds the configured To enable this, you need to:
audio:
enabled: True
min_volume: 500The
When
cameras:
front_camera:
ffmpeg:
inputs:
- path: rtsp://.../sub_stream
roles:
- audio
- detectThe audio levels can vary widely between camera models, so use the Audio tab in the Debug view of the Frigate UI to check the RMS levels and adjust 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
This is my current config. I added some notes and questions to it. Hope anyone can help (; |
Beta Was this translation helpful? Give feedback.
-
|
Your configuration has a fundamental issue: detect must be enabled for motion-based recording to work(1). Setting Here's the corrected configuration: audio-record:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/stream
roles:
- detect
- record
- audio
record:
enabled: true
retain:
mode: motion
detect:
enabled: true # Must be enabled for motion-based recording
width: 1280
height: 720
motion:
enabled: true # Motion detection must be enabled
audio:
enabled: true
min_volume: 10Regarding your specific questions:
Important notes:
📚 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.
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to trigger an recording when the audio for a stream goes above a certain threshold volume? I want to record my stream when it is not completely silent. I don't want it to be event based. It should just record when it hears something loud.
Beta Was this translation helpful? Give feedback.
All reactions