将组.mp3文件连接在一起的最佳方法

时间:2011-06-23 03:47:27

标签: mp3

我有更多.mp3文件,例如:

  

t001.mp3 t002.mp3 t003.mp3 .....

     

e001.mp3 e002.mp3 e003.mp3 .....

我想合并:

t001.mp3 and e001.mp3 ->>>> r001.mp3
t002.mp3 and e002.mp3 ->>>> r002.mp3
t003.mp3 and e003.mp3 ->>>> r003.mp3
像这样的东西。

执行此命令的最佳方法是什么?有应用程序或批处理命令吗?

2 个答案:

答案 0 :(得分:3)

如果您使用的是Linux,则只需使用cat file1 file2 > file3命令连接文件并获取合并的mp3文件即可按顺序播放上述文件。

其他操作系统(包括Windows)也提供类似的功能,例如:(type file1 file2 > file3)。

以下相关问题提供了更多信息。

Using cat to join mp3 files. What is this black sorcery?

干杯!!!

答案 1 :(得分:0)

我已成功使用命令行工具MP3Wrap。它可以在命令提示符或批处理文件中使用。一些使用它的命令:

mp3wrap  combinedfiles.mp3  file*

将所有文件包装在目录中:

mp3wrap combinedfiles.mp3 *
                or
mp3wrap combinedfiles.mp3 *.*

两个或多个文件:

mp3wrap combinedfiles.mp3 file1.mp3 file2.mp3 etc.