将 mp3 合二为一 Python
Merging mp3s into one in Python
我在 SOverflow 上读到要为此使用 PyDub,但 PyDub 似乎无法在 Python 3.9 中使用。这是我的代码
from pydub import AudioSegment
firstfile = AudioSegment.from_mp3(r'C:/Users/ogiga/Desktop/Nice/FinalVideo.mp3')
但是我一直收到这个错误:
FileNotFoundError: [WinError 2] The system cannot find the file specified
这些都不起作用:
r'C:\Users\ogiga\Desktop\Nice\FinalVideo.mp3'
r'C:/Users/ogiga/Desktop/Nice/FinalVideo.mp3
已下载正确的 FFMPEG,并将其添加到路径中。它没有用,但我重新启动了我的电脑并且它起作用了。
我在 SOverflow 上读到要为此使用 PyDub,但 PyDub 似乎无法在 Python 3.9 中使用。这是我的代码
from pydub import AudioSegment
firstfile = AudioSegment.from_mp3(r'C:/Users/ogiga/Desktop/Nice/FinalVideo.mp3')
但是我一直收到这个错误:
FileNotFoundError: [WinError 2] The system cannot find the file specified
这些都不起作用:
r'C:\Users\ogiga\Desktop\Nice\FinalVideo.mp3'
r'C:/Users/ogiga/Desktop/Nice/FinalVideo.mp3
已下载正确的 FFMPEG,并将其添加到路径中。它没有用,但我重新启动了我的电脑并且它起作用了。