You don’t need a special application to do a simple join, you can do a byte copy/append in command prompt.
- Open up a command prompt (type cmd in run dialog)
- Browse to the folder where you have the MP3 files
- Type the following command
-
Code:
copy/b NameOfTheFirst.mp3+NameOfTheSecond.mp3+NameOfTheThird.mp3 result.mp3
You can append any number of mp3s just put + sign between the files and at the end give the name of the result file after a space.
However this is just a quick n dirty way to do it without any 3rd party apps. You cannot modify anything. Just append a set of files one after the other.