I am writing some software that stores a lot of audio. I want to store the audio in mp3 to keep the file size reasonable. The user can edit the audio so I need to convert it to wav for the editor. I've had problems converting from mp3->wav->mp3, namely the volume (gain?) goes away after about just 50 cycles. I found the LAME switch --scale 1 and now the volume stays constant but I get silence added to the front and back of the audio clip. Here's my current LAME (3.96.1) command:
lame.exe --alt-preset cbr 320 --resample 44 --scale 1
Can someone suggest a commandline that will allow me to convert from mp3->wav->mp3 for at least 100 cycles with minimal reduction in audio quality?
Thanks!
- arlyn
ps: as you may have realized, I'm not an audio expert so thanks in advance for your patience
