Hi all,
I've a PHP application to manage audio files.
I've two input about audio files: file wav and file MP3
My application joins all files in to an unique mp3 file, and so I convert the wav file in mp3 file before to join them.
I'm using LAME.
File wav (conversion):
lame -m m -b 128 file.wav filewav.mp3
File mp3 (in mp3 - to create the mp3 file with same characteristics of wav conversion):
lame --mp3input -b 128 file.mp3 filemp3.mp3
The problem is: I can't join files if they are different format (filewav.mp3 and filemp3.mp3)! Is it possible to join different files?
Thank you Pasquale