Thread
:
How to join multiple MP3 files?
View Single Post
#
2
09-18-2009, 03:36 AM
Stream Recorder
Posts: n/a
How to join multiple MP3 files (Linux, Mac OS)
In Linux and Mac OS instead of the copy command you can use the cat command:
Code:
cat *.mp3 > new.mp3 cat track1.mp3 track2.mp3 > new.mp3
Stream Recorder