OK, I have the latest fix of REACT from Synthetic Soul's web page, 0.996.1 and I have a single problem left.
All I want to do is make .FLAC images with the embedded cue sheet and keep a copy of the real EAC cue sheet handy for my archive, so when I uncompress the .flac image, the resulting .WAV file is ready to go with the EAC cue sheet to re-create the original CD. The problem is the cue sheet it makes has the filename with the .FLAC extension! Why is that? Under what circumstances could EAC decompress and write a FLAC file directly? Anyway, I want it to say .WAV, as it should.
For example:
CODE
REM GENRE Rock
REM DATE 1965
REM DISCID AF08640E
REM COMMENT "ExactAudioCopy v0.95b4"
PERFORMER "The Beatles"
TITLE "Rubber Soul"
FILE "The Beatles - Rubber Soul.flac" WAVE
This is what REACT makes. It should have
FILE "The Beatles - Rubber Soul.wav" WAVEWhat can I change to make the .FLAC image stay the same, as it works well and I don't want to touch it, but leave the original cue sheet showing a .WAV file?
Here is the pertinent part of my REACT.INI file:
CODE
[Settings]
Config=FLAC
EAC=C:\Program Files\Exact Audio Copy\EAC.exe
musicdir=F:\Music
encdir=C:\Program Files\REACT\Encoders
LogFile=
CodePage=1252
MinimizeCompressionWindow=1
ProcessPriority=1
ImageHotkey={F10}
ImageNaming=$artist$ - ($year$) $album$
KeyRemap1={F4}|+{F5}
KeyRemap2=|
KeyRemap3=|
Sla_Bks_Col_Qst_Bar_Quo_Ast_Lt_Gt=-|-|-||!|'|#|[|]
Version=0.996.1
Debug=0
; -- flac --
[FLAC-image]
Description=FLAC image with embedded cuesheet and ogg tags
ImageExt=flac
CuesheetExt=cue
destdir1=@musicdir@\$cdartist$
; RemoveCuePreEmph=1
; 1=>if @preemph@==1 ( @encdir@\sox.exe -V "@source@" "@destbase@.wav" deemph && move "@destbase@.wav" "@source@" )
1=>@encdir@\flac.exe -5 -f -m "@source@" -o "@image@"
2=>@encdir@\Tag.exe -t "ARTIST=@artist@" -t "ALBUM=@album@" -t "YEAR=@year@" -t "GENRE=@genre@" -t "TOTALTRACKS=@numtracks@" -t "FREEDB=@freedbid@" -t "CRC=@crc@" -f "CUESHEET=@cuesheet@" -f "EACLOG=@eaclog@" "@image@"
3=>del "@source@" "@eaclog@"
4=>move "@destbase@.*" "@destdir1@"
5=>move "@destdir1@"
Also, as another plea for your collective experience, before I start ripping all my CD's, is there anything else you can recommend as a good idea for preserving all for posterity? I have quite a few CD's that are out of print. Is there a way to grab the CD cover image from online as well?
Thanks!
Robert