2011-06-23 28 views
1

我有更多的.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 

這樣的事情。

執行此命令的最佳方法是什麼?有一個應用程序或批處理命令?

回答

3

如果您在Linux上,您可以簡單地使用cat file1 file2 > file3命令來連接文件並獲取合併的mp3文件,該文件將按順序播放上述文件。

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

更多信息可在以下相關問題中找到。

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

乾杯!

+0

,以及如何對窗口平臺? – Giffary

+0

它在答案中。請閱讀。 – bhagyas

+2

,如果它解決了你的問題,那麼接受這個答案並沒有什麼壞處。 – bhagyas

0

我已經成功地使用了命令行工具MP3Wrap。它可以在命令提示符或批處理文件中使用。其使用某些命令:

mp3wrap combinedfiles.mp3 file* 

要包住所有目錄中的文件:

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

兩個或多個文件:

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