Add Troubleshooting for known issue to ffmpeg_noise (#20446)

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
Koen Hendriks 2021-12-08 08:54:33 +01:00 committed by GitHub
parent f36b96f16c
commit fe6ca71ecb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
```