使用python批量化音乐文件格式转换的实例
最近在做声音文件数据处理,写了一个自动将m4a文件转化为wav的脚本。
importos m4a_path="/Users/Downloads/start1/" m4a_file=os.listdir(m4a_path) fori,m4ainenumerate(m4a_file): os.system("ffmpeg-i"+m4a_path+m4a +""+m4a_path+str(i)+".wav")#ffmpeg可以用来处理视频和音频文件,可#以设置一些参数,如采样频率等
以上这篇使用python批量化音乐文件格式转换的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。