python 读取wav 音频文件的两种方式

  python 中,常用的有两种可以读取wav音频格式的方法,如下所示:

 import scipy
from scipy.io import wavfile import soundfile as sf fs,data = wavfile.read("stop.wav")
print("sample:%d" % fs)
print(data) data_sf, sample_rate = sf.read('stop.wav') print("sound sample:%d" % sample_rate)
print(data_sf)
上一篇:[Python]获取win平台文件的详细信息


下一篇:【Python】[IO编程]文件读写,StringIO和BytesIO,操作文件和目录,序列化