I have a site that will be hosting small MP3 files.
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.
function appendMP3(originalMP3, newChunk){
originalMP3 = originalMP3 + newChunk;
return newMP3
}
compilation = append(compilaton, "sound.mp3");
Where do I start? Are there any existing resources?