python——AudioSegment 读取mp3文件报错:Python AudioSegment winError 2 The system cannot find the file speci

今天运行一个声音混合的程序,使用python 的AudioSegment.from_mp3(mp3path) 报错了.

我百度了一下说是缺少文件ffmpeg.exe和ffprobe.exe然后我就下载了windows的【https://github.com/BtbN/FFmpeg-Builds/releases?page=3】

我用的是python3.6,下载了好几个

python——AudioSegment  读取mp3文件报错:Python AudioSegment winError 2 The system cannot find the file speci

 

 使用第一种方案:

直接在代码中添加

    AudioSegment.converter = r"E:\s\ffmpeg-N-104843-gf176669a37-win64-lgpl-shared\ffmpeg-N-104843-gf176669a37-win64-lgpl-shared\bin\ffmpeffmpeg.exe"
    AudioSegment.ffprobe = r"E:\s\ffmpeg-N-104843-gf176669a37-win64-lgpl-shared\ffmpeg-N-104843-gf176669a37-win64-lgpl-shared\bin\ffprobe.exe"
    

  然后运行,,失败,尝试了三个都失败了。。。

使用第二中方案:

直接复制这两个exe文件到项目运行目录,使用第三个失败了。。

然后使用第二个里面的两个exe文件成功了!!!我都快放弃了~竟然成功了

 

附:

 音频混合(不是拼接):

 

    sound1 = AudioSegment.from_mp3("E:\\s\\CodeEditer\\1.mp3")
    sound2 = AudioSegment.from_mp3("E:\\s\\CodeEditer\\2.mp3")
    combined = sound1.overlay(sound2)
    combined.export("3.mp3", format='mp3')

  

参考:

https://blog.csdn.net/xiaoxifei/article/details/105295288

https://www.jianshu.com/p/75cbbefca085

 

上一篇:2021-10-17


下一篇:计算机程序设计c++ 9-7:类的抽象描述举例-汽车类