README 494 B

1234567891011121314151617
  1. RNNoise is a noise suppression library based on a recurrent neural network.
  2. To compile, just type:
  3. % ./autogen.sh
  4. % ./configure
  5. % make
  6. Optionally:
  7. % make install
  8. While it is meant to be used as a library, a simple command-line tool is
  9. provided as an example. It operates on RAW 16-bit (machine endian) mono
  10. PCM files sampled at 48 kHz. It can be used as:
  11. ./examples/rnnoise_demo <number of channels> <maximum attenuation> < input.raw > output.raw
  12. The output is also a 16-bit raw PCM file.