我正在尝试在python 2.6中将16khz的wav文件下采样到8khz。该文件具有RIFF标题,并且采用mulaw格式,并且必须保持该格式。
我已经看了this big list of python stuff中的一些内容,似乎无法找到一个只会改变音频文件采样率的简单库。
有关好的python库的任何建议吗?
答案 0 :(得分:1)
我最终安装了sox,然后通过子进程调用它:
from subprocess import Popen, PIPE, STDOUT
soxCall = '/usr/local/bin/sox ' + infileName + \
' ' + outfileName + ' rate 8k'
p = Popen(soxCall, shell=True, stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
答案 1 :(得分:0)
audioop
看起来符合您的需求。
支持mu-law,看起来可以使用audioop.ratecv