Python wrapper for Xiph.org rnnoise ( https://gitlab.xiph.org/xiph/rnnoise )
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Yann Weber d1c8f6c36e Initial commit il y a 10 mois
samples Initial commit il y a 10 mois
COPYING Initial commit il y a 10 mois
README.md Initial commit il y a 10 mois
demo.py Initial commit il y a 10 mois
demo_iter.py Initial commit il y a 10 mois
demo_orig.py Initial commit il y a 10 mois
pyrnnoise.c Initial commit il y a 10 mois
rnnoise_demo.c Initial commit il y a 10 mois
setup.py Initial commit il y a 10 mois
test.sh Initial commit il y a 10 mois
test_pyrnnoise.py Initial commit il y a 10 mois

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)'.