I see a few mentioning CDex & EAC with LAME.
I've found a few settings that may help others useing EAC/Lame.
-------------------------------------------------
Recommended encoder settings:
-------------------------------------------------
--alt-preset standard (~190 kbit/s, typical 180 ... 220)
--alt-preset fast standard (~190 kbit/s, faster but potentially lower quality)
--alt-preset extreme (~250 kbit/s, typical 220 ... 270)
--alt-preset fast extreme (~250 kbit/s, faster but potentially lower quality)
--alt-preset insane (320 kbit/s CBR, highest possible quality)
For high quality on portable MP3 players, you may use --alt-preset medium (around 160 kbit/s). The medium preset is only available in the modified LAME3.90.3.
These are "presets" built into lame that you can use. There are more, just posted the more popular ones. An example of the compression line would be -
--alt-preset extreme --id3v2-only --pad-id3v2 --tt "%t" --ta "%a" --tl "%t" --ty "%y" --tn "%n" --tg "%m" %s %d -V %0
I was using this for a while. But I wanted higher bit rate, but not max of file size.
Took some searching, but found out how to get 320 max bitrate at vbr.
The used lame parameters mean:
* Join stereo (-m j)
* Variable bitrate (-v)
* Minimum bitrate (-b [bitrate])
* Maximum bitrate (-B [bitrate])
* High quality (-h)
* Quality setting for VBR (-V [arg])
* Strictly enforce the -b option (-F)
This kinda tells you whats being told to lame on how to compress your mp3s.
Mine is now like this -
--id3v2-only --pad-id3v2 -b 128 -F -B 320 -h -V 0 --tt "%t" --ta "%a" --tl "%t" --ty "%y" --tn "%n" --tg "%m" %s %d --V %0
-b tells it to use minimum of 128
-B tells it to use the max of 320
you can change these to whatever suits your needs best.
you can find the suggested versions of
Lame Here
You want either the newest (3.96.1) or where the original authors left off (3.90.3)
The newest being the fastest, I'm using it, works great.
The original being most true to the presets as they were made to do by original authers of lame. 3.90.3 is very slow compared to latest.
With this list of settings, you should be able to get the quality vs file size you want.
I haven't tried CDex myself, I think it's all setup for you when installed. Exact Audio Copy, you just need to tell "where" Lame.exe is located.
You'll know it's working correctly when you rip a track, and Lame kicks in (dos window), and starts doing it's compression. If Lame doesn't kick in, you have something wrong in compression line, or it's not pointing to correct location of Lame.exe.
Hope this helps.