Python wrapper for Xiph.org rnnoise ( https://gitlab.xiph.org/xiph/rnnoise )
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Yann Weber d1c8f6c36e Initial commit vor 10 Monaten
samples Initial commit vor 10 Monaten
COPYING Initial commit vor 10 Monaten
README.md Initial commit vor 10 Monaten
demo.py Initial commit vor 10 Monaten
demo_iter.py Initial commit vor 10 Monaten
demo_orig.py Initial commit vor 10 Monaten
pyrnnoise.c Initial commit vor 10 Monaten
rnnoise_demo.c Initial commit vor 10 Monaten
setup.py Initial commit vor 10 Monaten
test.sh Initial commit vor 10 Monaten
test_pyrnnoise.py Initial commit vor 10 Monaten

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