Concatination of two mp3 files in asp.net

active_dotnet

Member
Joined
Jan 17, 2006
Messages
5
Programming Experience
Beginner
Hi friends,
i want to concatinate to mp3 files in asp.net.Any idea please.....
Regards,
active
 
One method, but not a good one, is to decode to wav, merge wavs, re-encode to mp3. This result in another step of compression quality loss, plus mp3 encoding is licenced.

Another method is to read and modify the mp3 header info about frames and add frames to the file. Here is a link about reading header info: http://www.codeproject.com/audio/mp3info-by-shoonya.asp
 
Back
Top