I use MAREO and itunesencode to do exactly what you are talking about.
I use EAC to rip to individual tracks in secure mode, and then have 3 actions assigned to each track in MAREO.
1. used wavegain to get the volume accross all tracks corrected to 89db. (i use shuffle ALOT on my ipod)
2. rip to MP3 using LAME 3.96.1 -aps for the ipod
3. rip to ALAC for archives and listening on the PC.
it works really well.
here's my mareo.ini all you have to do is get the paths to the files right for your system.
==================================================
; MAREO - (M.)ultiple (A.)pplications (R.)unner for (E.)AC and (O.)thers.
; Literal From Replacing Value
; @finalnameonly@ Parameter # 2 Encoded File Final File Name (ie.: artist - cd - track - name)
; @source@ Parameter # 3 FULL Source File Name
; @dest@ Parameter # 4 FULL Destination File Name
; @artist@ Parameter # 5 CD Artist Name
; @album@ Parameter # 6 CD Name
; @title@ Parameter # 7 Song Name
; @track@ Parameter # 8 Track (song) Number
; @year@ Parameter # 9 Year of the CD release
; @genre@ Parameter # 10 CD's Music Genre
; @11@ .. @nn@ Parameter # 11... User Definenable
;
; @ownpath@ MAREO finds out the full path to MAREO, without the the ending backslash
; @finalpathonly@ MAREO finds out the final path to where the encode file will end
; @finalfullname@ MAREO finds out the final full name of the encoded file: @finalpathonly@ + \ + @finanameonly@
; @tmpfullname@ MAREO finds out the full temporal name with the encoder extension
; @tmppathonly@ MAREO finds out the full temporal path, without the ending backslash
; @tmpnameonly@ MAREO finds out the temporal name, without any extension
; @extonly@ MAREO finds out the encoder file extension without the dot (ie: OGG)
; ====================================================================================================
=======================
; PRE-PROCESSORS
; ====================================================================================================
=======================
; ---------------------------------------------------------------------------------------------------------------------------
; WAVEGAIN
; ---------------------------------------------------------------------------------------------------------------------------
EXT = NONE
PATH = NONE
ENCODER = k:\Program Files\wavegain\wavegain.exe
PARAMETERS = --radio --apply --noclip "@source@"
; ====================================================================================================
=======================
; LOSSY ENCODERS
; ====================================================================================================
=======================
; ---------------------------------------------------------------------------------------------------------------------------
; MP3 LAME (--alt-preset standard)
; ---------------------------------------------------------------------------------------------------------------------------
EXT = mp3
PATH = m:\mp3\@artist@\@album@
ENCODER = k:\Program Files\LAME\lame.exe
PARAMETERS = --alt-preset standard --ignore-tag-errors --add-id3v2 --pad-id3v2 --ta "@artist@" --tl "@album@" --tt "@title@" --tn "@track@" --ty @year@ --tg "@genre@" --tc "EAC,LAME396.1 APS,MAREO" "@source@" "@dest@"
; ====================================================================================================
=======================
; LOSSLESS ENOCERS
; ====================================================================================================
=======================
; ---------------------------------------------------------------------------------------------------------------------------
; MP4 (iTunes + iTunesEncode:
http://otto.homedns.org:8888/iTunes/iTunesEncode.zip); ---------------------------------------------------------------------------------------------------------------------------
EXT = m4a
PATH = m:\ALAC\@artist@\@album@
ENCODER = k:\program files\itunesencode\iTunesEncode.exe
; Usage: iTunesEncode.exe [options] -i <input.wav> [-o <output.ext>]
PARAMETERS = -e "Lossless Encoder" -a "@artist@" -l "@album@" -n @track@ -t "@title@" -y @year@ -g "@genre@" -c "EAC,itunesencode,MAREO,itunes4.9" -i "@source@" -o "@dest@" -d
;-d to delete temp file from itunes library after created.
; EOF
====================================================