From fe6ca71ecb9c243fae710fd34c4ee69efa3e8864 Mon Sep 17 00:00:00 2001 From: Koen Hendriks Date: Wed, 8 Dec 2021 08:54:33 +0100 Subject: [PATCH] Add Troubleshooting for known issue to ffmpeg_noise (#20446) Co-authored-by: Franck Nijhof --- source/_integrations/ffmpeg_noise.markdown | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/source/_integrations/ffmpeg_noise.markdown b/source/_integrations/ffmpeg_noise.markdown index 816eb060957..189356f8f1c 100644 --- a/source/_integrations/ffmpeg_noise.markdown +++ b/source/_integrations/ffmpeg_noise.markdown @@ -73,3 +73,17 @@ To experiment with values: ```bash ffmpeg -i YOUR_INPUT -vn -filter:a silencedetect=n=-30dB:d=1 -f null - ``` + +### Troubleshooting + +#### Unresponsive after a while + +If the noise sensor becomes unresponsive, make sure you have `extra_arguments: -nostats` in the configuration. + +```yaml +# Example configuration.yaml entry +binary_sensor: + - platform: ffmpeg_noise + input: FFMPEG_SUPPORTED_INPUT + extra_arguments: -nostats +```