diff --git a/docs/docs/configuration/advanced/reference.md b/docs/docs/configuration/advanced/reference.md index 5c07e98a96..81feb17db7 100644 --- a/docs/docs/configuration/advanced/reference.md +++ b/docs/docs/configuration/advanced/reference.md @@ -212,7 +212,6 @@ audio: listen: - bark - fire_alarm - - scream - speech - yell # Optional: Filters to configure detection. diff --git a/docs/docs/configuration/audio_detectors.md b/docs/docs/configuration/audio_detectors.md index eba22ec184..422d4cec35 100644 --- a/docs/docs/configuration/audio_detectors.md +++ b/docs/docs/configuration/audio_detectors.md @@ -88,7 +88,7 @@ Volume is considered motion for recordings, this means when the `record -> retai ### Configuring Audio Events -The included audio model has over [500 different types](https://github.com/blakeblackshear/frigate/blob/dev/audio-labelmap.txt) of audio that can be detected, many of which are not practical. By default `bark`, `fire_alarm`, `scream`, `speech`, and `yell` are enabled but these can be customized. +The included audio model has over [500 different types](https://github.com/blakeblackshear/frigate/blob/dev/audio-labelmap.txt) of audio that can be detected, many of which are not practical. By default `bark`, `fire_alarm`, `speech`, and `yell` are enabled but these can be customized. @@ -107,7 +107,6 @@ audio: listen: - bark - fire_alarm - - scream - speech - yell ``` diff --git a/frigate/config/camera/audio.py b/frigate/config/camera/audio.py index 6028802df9..59a5180bed 100644 --- a/frigate/config/camera/audio.py +++ b/frigate/config/camera/audio.py @@ -9,7 +9,7 @@ from ..base import FrigateBaseModel __all__ = ["AudioConfig", "AudioFilterConfig"] -DEFAULT_LISTEN_AUDIO = ["bark", "fire_alarm", "scream", "speech", "yell"] +DEFAULT_LISTEN_AUDIO = ["bark", "fire_alarm", "speech", "yell"] class AudioFilterConfig(FrigateBaseModel): @@ -41,7 +41,7 @@ class AudioConfig(FrigateBaseModel): listen: list[str] = Field( default=DEFAULT_LISTEN_AUDIO, title="Listen types", - description="List of audio event types to detect (for example: bark, fire_alarm, scream, speech, yell).", + description="List of audio event types to detect (for example: bark, fire_alarm, speech, yell).", ) filters: Optional[dict[str, AudioFilterConfig]] = Field( None, diff --git a/web/public/locales/en/config/cameras.json b/web/public/locales/en/config/cameras.json index 98e625abf7..ec0c07c7d9 100644 --- a/web/public/locales/en/config/cameras.json +++ b/web/public/locales/en/config/cameras.json @@ -29,7 +29,7 @@ }, "listen": { "label": "Listen types", - "description": "List of audio event types to detect (for example: bark, fire_alarm, scream, speech, yell)." + "description": "List of audio event types to detect (for example: bark, fire_alarm, speech, yell)." }, "filters": { "label": "Audio filters", @@ -156,7 +156,7 @@ "description": "FFmpeg settings including binary path, args, hwaccel options, and per-role output args.", "path": { "label": "FFmpeg path", - "description": "Path to the FFmpeg binary to use or a version alias (\"5.0\" or \"7.0\")." + "description": "Path to the FFmpeg binary to use or a version alias (\"5.0\" or \"8.0\")." }, "global_args": { "label": "FFmpeg global arguments", diff --git a/web/public/locales/en/config/global.json b/web/public/locales/en/config/global.json index 119d384e43..4c1188bd8b 100644 --- a/web/public/locales/en/config/global.json +++ b/web/public/locales/en/config/global.json @@ -547,7 +547,7 @@ }, "listen": { "label": "Listen types", - "description": "List of audio event types to detect (for example: bark, fire_alarm, scream, speech, yell)." + "description": "List of audio event types to detect (for example: bark, fire_alarm, speech, yell)." }, "filters": { "label": "Audio filters", @@ -683,7 +683,7 @@ "description": "FFmpeg settings including binary path, args, hwaccel options, and per-role output args.", "path": { "label": "FFmpeg path", - "description": "Path to the FFmpeg binary to use or a version alias (\"5.0\" or \"7.0\")." + "description": "Path to the FFmpeg binary to use or a version alias (\"5.0\" or \"8.0\")." }, "global_args": { "label": "FFmpeg global arguments",