QUOTE(khiloa @ Jan 29 2005, 04:17 AM)
I usually rip into .wav then transcode to .flac for the comp. Then I transcode that into -q6 ogg using the fb ogg converter component for my Karma. Or if its an album I don't think I'm gonna keep (eg one copied from a friend..) I'll go straight to a -q6.
Me thinks that ripping to wav and then flac on the PC is bit of an overkill. EAC rips to a wav file anyway and
then does the encoding.
Why don't you do this:
Use
EAC and then call the
mareo.exe that you can configure to create you your flac files and ogg vorbis (or whatever else you want) at the same time. That'll save you a lot of time.
An example from my
mareo setup (ini) file may help:
; ---------------------------------------------------------------------------------------------------------------------------
; OGG VORBIS
; ---------------------------------------------------------------------------------------------------------------------------
EXT = ogg
PATH = C:\Audio\lossy\ogg_aotuvb3\@artist@\@album@
ENCODER = "C:\My Downloads\Encoders\ogg\oggenc2.3aoTuVb3P4\oggenc2.exe"
PARAMETERS = -q 4 "@source@" -o "@dest@" -a "@artist@" -l "@album@" -t "@title@" -N "@track@" -d @year@ -G "@genre@" -c "COMMENT=VORBIS+MAREO"
; ---------------------------------------------------------------------------------------------------------------------------
; OGG VORBIS - Various Artists
; ---------------------------------------------------------------------------------------------------------------------------
; EXT = ogg
; PATH = C:\Audio\lossy\ogg_aotuvb3\Various Artists\@album@
; ENCODER = "C:\My Downloads\Encoders\ogg\oggenc2.3aoTuVb3P4\oggenc2.exe"
; PARAMETERS = -q 4 "@source@" -o "@dest@" -a "@artist@" -l "@album@" -t "@title@" -N "@track@" -d @year@ -G "@genre@" -c "COMMENT=VORBIS+MAREO"
; ---------------------------------------------------------------------------------------------------------------------------
; FLAC
; ---------------------------------------------------------------------------------------------------------------------------
EXT = flac
PATH = C:\Audio\lossless\flac\@artist@\@album@
ENCODER = "C:\My Downloads\Encoders\flac\flac 1.1.1a\flac.exe"
PARAMETERS = -5 "@source@" -o "@dest@" -T artist="@artist@" -T album="@album@" -T title="@title@" -T tracknumber="@track@" -T date=@year@ -T genre="@genre@" -T comment="FLAC+MAREO"
; ---------------------------------------------------------------------------------------------------------------------------
; FLAC - Various Artists
; ---------------------------------------------------------------------------------------------------------------------------
; EXT = flac
; PATH = C:\Audio\lossless\flac\Various Artists\@album@
; ENCODER = "C:\My Downloads\Encoders\flac\flac 1.1.1a\flac.exe"
; PARAMETERS = -5 "@source@" -o "@dest@" -T artist="@artist@" -T album="@album@" -T title="@title@" -T tracknumber="@track@" -T date=@year@ -T genre="@genre@" -T comment="FLAC+MAREO"
; EOF