今天aiping點讀筆的MP3源文件出現聲音大小不一致,並且須要將英文單詞MP3與單詞翻譯MP3文件鏈接起來,剛開始使用ffmpeg效果不好。萬能的gitgub再次證實了它的萬能,我找到了pydubpython
1 網址:https://github.com/jiaaro/pydubgit
2 pydub須要依賴 libav或者ffmpeggithub
4 安裝pydub: pip install pydub翻譯
5 使用pydub:orm
enPath = "%s%s/%s"%(enDir,file,enfile) #英文文件的路徑 cnPath = "%s%s/%s"%(cnDir,file,enfile.replace("en_w","cn_w"))#中文文件的路徑 targetPath = "%s%s/%s"%(toDir,file,enfile.replace("en_w","all")) #合併文件的路徑 #加載MP3文件 song1 = AudioSegment.from_mp3(enPath) song2 = AudioSegment.from_mp3(cnPath) #取得兩個MP3文件的聲音分貝 db1 = song1.dBFS db2 = song2.dBFS song1 = song1[300:] #從300ms開始截取英文MP3 #調整兩個MP3的聲音大小,防止出現一個聲音大一個聲音小的狀況 dbplus = db1 - db2 if dbplus < 0: # song1的聲音更小 song1+=abs(dbplus) elif dbplus > 0: #song2的聲音更小 song2+=abs(dbplus) #拼接兩個音頻文件 song = song1 + song2 #導出音頻文件 song.export(targetPath, format="mp3") #導出爲MP3格式