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 ac373029fe Updates README.md hace 2 meses
samples Initial commit hace 1 año
COPYING Initial commit hace 1 año
README.md Updates README.md hace 2 meses
demo.py Initial commit hace 1 año
demo_iter.py Initial commit hace 1 año
demo_orig.py Initial commit hace 1 año
pyrnnoise.c Initial commit hace 1 año
rnnoise_demo.c Initial commit hace 1 año
setup.py Initial commit hace 1 año
test.sh Initial commit hace 1 año
test_pyrnnoise.py Initial commit hace 1 año

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 & test

# Building
python3 -m build

# create test virtualenv
python3 -m venv rnnoise_venv
source rnnoise_venv/bin/activate

# Install
python3 -m pip install dist/pyrnnoise*.whl

# run test
bash test.sh

Examples

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