I am using EAC (Exact Audio Copy) with FLAC to produce single file rips of my CDs in one hit (with CUE sheets).
I use this string in the EAC compression options:
--best --replay-gain -V -T "title=%t" -T "artist=%a" -T "album=%g" -T "date=%y" -T "tracknumber=%n" -T "genre=%m" %s
This gives me very good results (I tend to go for quality and small files in preference over speed of encoding):
* highest compression (--best)
* replaygain info in the tag (--replay-gain)
* verifies that Flak is definitely lossless and all correct (-V)
* completes all tags for me (-T etc etc)
(I've never worked out what the %s means!)
EAC creates the CUE sheet for me which enables me to play individual tracks in all good audio players and the wonderful SlimDevices Squeezebox (www.slimp3.com).
However I'd really like to embed the CUE information into the Flac file using the --cuesheet FILENAME setting as i feel this will future-proof my Flac files. So I need to get Flac's --cuesheet command to refer to the CUE sheet created by EAC. This CUE sheet is created in the same directory as the WAV and FLAC file and has exactly the same name.
i.e. Biosphere - Substrata (remastered) [Touch 2001].flac and
Biosphere - Substrata (remastered) [Touch 2001].cue.
I have tried this:
--best --replay-gain --cuesheet="%~d1%~p1%~n1.cue" -V -T "title=%t" -T "artist=%a" -T "album=%g" -T "date=%y" -T "tracknumber=%n" -T "genre=%m" %s
but it bombs out as soon as the encoding starts. Can anyone give me the correct string I need to achieve what i want (assuming it is possible)?
Any help greatly appreciated.
MC