python的speexdsp
要求
wig
编译工具链
Python
libspeexdsp-dev
建造
有两种构建程序包的方法。
使用setup.py
sudo apt install libspeexdsp-dev
git clone https://github.com/xiongyihui/speexdsp-python.git
cd speexdsp-python
python setup.py install
使用Makefile
git clone https://github.com/xiongyihui/speexdsp-python.git
cd speexdsp-python/src
make
开始吧
"""Acoustic Echo Cancellation for wav files."""
import wave
import sys
from s
1