mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-06-25 05:41:53 +03:00
Some checks failed
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
* update e2e mock data to remove deprecated fields * remove scream audio label scream was never mapped to anything in frigate's custom labelmap, yell is used everywhere * document common audio labels * deprecate ffmpeg 5 * language tweak * add field message to recommend presets instead of manual hwaccel args * add guidance to docs on choosing a detect fps
62 lines
2.0 KiB
Python
62 lines
2.0 KiB
Python
from typing import Optional
|
|
|
|
from pydantic import Field
|
|
|
|
from frigate.const import AUDIO_MIN_CONFIDENCE
|
|
|
|
from ..base import FrigateBaseModel
|
|
|
|
__all__ = ["AudioConfig", "AudioFilterConfig"]
|
|
|
|
|
|
DEFAULT_LISTEN_AUDIO = ["bark", "fire_alarm", "speech", "yell"]
|
|
|
|
|
|
class AudioFilterConfig(FrigateBaseModel):
|
|
threshold: float = Field(
|
|
default=0.8,
|
|
ge=AUDIO_MIN_CONFIDENCE,
|
|
lt=1.0,
|
|
title="Minimum audio confidence",
|
|
description="Minimum confidence threshold for the audio event to be counted.",
|
|
)
|
|
|
|
|
|
class AudioConfig(FrigateBaseModel):
|
|
enabled: bool = Field(
|
|
default=False,
|
|
title="Enable audio detection",
|
|
description="Enable or disable audio event detection for all cameras; can be overridden per-camera.",
|
|
)
|
|
max_not_heard: int = Field(
|
|
default=30,
|
|
title="End timeout",
|
|
description="Amount of seconds without the configured audio type before the audio event is ended.",
|
|
)
|
|
min_volume: int = Field(
|
|
default=500,
|
|
title="Minimum volume",
|
|
description="Minimum RMS volume threshold required to run audio detection; lower values increase sensitivity (e.g., 200 high, 500 medium, 1000 low).",
|
|
)
|
|
listen: list[str] = Field(
|
|
default=DEFAULT_LISTEN_AUDIO,
|
|
title="Listen types",
|
|
description="List of audio event types to detect (for example: bark, fire_alarm, speech, yell).",
|
|
)
|
|
filters: Optional[dict[str, AudioFilterConfig]] = Field(
|
|
None,
|
|
title="Audio filters",
|
|
description="Per-audio-type filter settings such as confidence thresholds used to reduce false positives.",
|
|
)
|
|
enabled_in_config: Optional[bool] = Field(
|
|
None,
|
|
title="Original audio state",
|
|
description="Indicates whether audio detection was originally enabled in the static config file.",
|
|
)
|
|
num_threads: int = Field(
|
|
default=2,
|
|
title="Detection threads",
|
|
description="Number of threads to use for audio detection processing.",
|
|
ge=1,
|
|
)
|