I am attempting to use FFmpegs arnndn filter (https://ffmpeg.org/ffmpeg-filters.html#arnndn) to denoise audio samples. I am able to run this command ffmpeg.exe -i "input.mov" -af arnndn=m="bd.rnnn" "output.mov"
and I receive a denoised output, however when I add the mix option (for example: ffmpeg.exe -i "input.mov" -af arnndn=m="bd.rnnn":mix=1 "output.mov"
) I receive an error that says "Option 'mix' not found". Am I passing the mix value incorrectly or is this filter not working properly?
Asked
Active
Viewed 512 times
2

AnnaJoyW
- 21
- 2
-
1Only available in v4.4 or newer. – Gyan Oct 15 '21 at 20:17
-
@Gyan thank you, that was the issue – AnnaJoyW Oct 18 '21 at 18:10