Glad to hear it! Looks like you sorted things out while I was typing
this long message. Regarding SoftSqueeze, you should start another
thread. Rather than me just deleting this message, I'll leave it in
case it helps anyone else out.
Let's say you had a file called "song.wav". To compress it, you'd
type:
Code:
--------------------
flac -6 "song.wav"
--------------------
You could use a number other than 6, anything from 0 to 8.
Now say you want to verify the file, which decodes it at the same time
as it's encoding it, and if they don't match at the end, report an
error.
Code:
--------------------
flac -6 -V "song.wav"
--------------------
Write ReplayGain track tags:
Code:
--------------------
flac -6 -V --replay-gain "song.wav"
--------------------
Add tags with a -T, then in double quotes, what the tag name is
followed by what it will contain.
Code:
--------------------
flac -6 -V --replay-gain -T "artist=Some Guy" "song.wav"
--------------------
And finally if you want to specifically name the resulting flac file:
Code:
--------------------
flac -6 -V --replay-gain -T "artist=Some Guy" "song.wav" "Some Guy's
Song.flac"
--------------------
Looking familiar? This is all from
http://flac.sourceforge.net/documentation_tools_flac.html There are a
LOT more options.
Now EAC uses codes so that it can pass things on to flac. It doesn't
need the word "flac", it'll call it from the "location of flac.exe"
that you've specified. To specify artist, you use %a. Title, %t.
Album, %g. Etc., etc. Finally you use %s to specify the file name and
path.
--
Mark Lanctot
'Sean Adams' Response-O-Matic checklist, patent pending!'
(http://forums.slimdevices.com/showpost.php?p=200910&postcount=2)
------------------------------------------------------------------------
Mark Lanctot's Profile: http://forums.slimdevices.com/member.php?userid=2071
View this thread: http://forums.slimdevices.com/showthread.php?t=37519
_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/ripping