I want to create a utility that will allow me to combine the mp3 files together to create a single MP3 file.
I'm somewhat new to PHP but not new to programming.
Ideally, I would have a function that let me specify the a starting file and then append the second file to the existing file.
Code: Select all
function appendMP3(originalMP3, newChunk){
originalMP3 = originalMP3 + newChunk;
}