我在尝试着连接2 个 mp3 文件合并为一个。
我已经创建了一个 concat.txt 文件,例如,该文件位于与我尝试连接的文件相同的文件夹中:
连接.txt
file 'some-song1.mp3'
file 'some-song2.mp3'
这些 mp3 文件与此 txt 文件位于同一目录中,并且我已经进入这个目录. 此目录位于卷上。
当我运行以下命令时:
ffmpeg -f concat -i concat.txt -c copy combined.mp3
我得到:
Impossible to open 'some-song1.mp3'
concat.txt: No such file or directory
我在 Mac OS X 上