Python wrapper for Xiph.org rnnoise ( https://gitlab.xiph.org/xiph/rnnoise )
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Yann Weber d1c8f6c36e Initial commit před 10 měsíci
samples Initial commit před 10 měsíci
COPYING Initial commit před 10 měsíci
README.md Initial commit před 10 měsíci
demo.py Initial commit před 10 měsíci
demo_iter.py Initial commit před 10 měsíci
demo_orig.py Initial commit před 10 měsíci
pyrnnoise.c Initial commit před 10 měsíci
rnnoise_demo.c Initial commit před 10 měsíci
setup.py Initial commit před 10 měsíci
test.sh Initial commit před 10 měsíci
test_pyrnnoise.py Initial commit před 10 měsíci

README.md

pyrnnoise

Python wrapper for Xiph.org rnnoise

Dependencies

librnnoise

git clone 'https://gitlab.xiph.org/xiph/rnnoise/-/tree/master'
cd rnnoise
./autogen.sh
./configure
make
sudo make install

Build dependencies

  • setuptools
  • build
  • wheel

Building

python3 -m build

Run tests

bash test.sh

Installing

pip install dist/pyrnnoise*.whl

Examples

See demo_iter.py and demo.py or run python3 -c 'import rnnoise; help(rnnoise)'.