Python wrapper for Xiph.org rnnoise ( https://gitlab.xiph.org/xiph/rnnoise )
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Yann Weber d1c8f6c36e Initial commit 10ヶ月前
samples Initial commit 10ヶ月前
COPYING Initial commit 10ヶ月前
README.md Initial commit 10ヶ月前
demo.py Initial commit 10ヶ月前
demo_iter.py Initial commit 10ヶ月前
demo_orig.py Initial commit 10ヶ月前
pyrnnoise.c Initial commit 10ヶ月前
rnnoise_demo.c Initial commit 10ヶ月前
setup.py Initial commit 10ヶ月前
test.sh Initial commit 10ヶ月前
test_pyrnnoise.py Initial commit 10ヶ月前

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