Python wrapper for Xiph.org rnnoise ( https://gitlab.xiph.org/xiph/rnnoise )
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Yann Weber ac373029fe Updates README.md 2 meses atrás
samples Initial commit 1 ano atrás
COPYING Initial commit 1 ano atrás
README.md Updates README.md 2 meses atrás
demo.py Initial commit 1 ano atrás
demo_iter.py Initial commit 1 ano atrás
demo_orig.py Initial commit 1 ano atrás
pyrnnoise.c Initial commit 1 ano atrás
rnnoise_demo.c Initial commit 1 ano atrás
setup.py Initial commit 1 ano atrás
test.sh Initial commit 1 ano atrás
test_pyrnnoise.py Initial commit 1 ano atrás

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