①问题描述
在终端使用pip install soundfile
安装soundfile时报错。
②问题解决
python处理音频文件经常要使用soundfile库。ubuntu系统在pip安装soundfile库时报错,是因为缺乏依赖包
libsndfile1
,所以要先安装依赖包,然后再安装soundfile。命令如下:
- step1:终端输入
sudo apt-get install libsndfile1
- step2:终端输入
pip install soundfile
soundfile学习
点此学习soundfile的使用。
soundfile常用于音频文件读写:
import soundfile as sf
data, samplerate = sf.read('existing_file.wav')
sf.write('new_file.flac', data, samplerate)