README 697 B

12345678910111213141516171819202122
  1. RNNoise is a noise suppression library based on a recurrent neural network.
  2. RNNoise-nu is a modified version of RNNoise aimed to be a bit more general
  3. purpose.
  4. To compile, just type:
  5. % autoreconf -i
  6. % ./configure
  7. % make
  8. Optionally:
  9. % make install
  10. While it is meant to be used as a library, a simple command-line tool is
  11. provided as an example. It operates on RAW 16-bit (machine endian) mono
  12. PCM files sampled at 48 kHz. It can be used as:
  13. ./examples/rnnoise_demo <number of channels> <maximum attenuation> [model to use] < input.raw > output.raw
  14. The output is also a 16-bit raw PCM file.
  15. For information on the neural network models available, see
  16. https://github.com/GregorR/rnnoise-models