I always got the annoying miniscule gap that comes with MP3, yet never the two second one.
With Linux, encoding from the command line with LAME 3.90.3 gets me a two second gap. This wouldn't be a problem, but the program that I use to get ID3 tags and filenames for it uses FreeDB and the two second gap screws it up when the song is 4:10 instead of 4:08.
I tried encoding one song at once, with the usual
CODE
lame --alt-preset insane cdtrack01.wav
and with what I use to encode an entire directory of WAVs
CODE
find ./ -name "*.wav" -exec lame --alt-preset insane {} {}.mp3 \;
Is there anyway to get rid of the pregap it puts on them, or a switch? I know I'm missing something simple here. I did a search, and got nada.
Also... I'm using --alt-preset insane, since I've got well enough room for it, for what I'm doing now.
Thanks for helping an ignorant fool.