Combine/Concatenate MP3 Files Using PHP
Posted: Fri Jan 29, 2010 1:12 pm
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.
Where do I start? Are there any existing resources?
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;
}