OK! I've got a demo working!!! What this program (I call it flacattack) does is, using EAC:
1. rips an image file
2. creates a new folder named "Artist - Album"
3. renames the cue to "Artist - Album.cue"
4. moves the cue file to "Artist - Album"
5. fixes the file pointer in the cue file (so that it points to "Artist - Album.flac")
6. encodes and tags the image with flac (w/ embedded cue sheet)
7. renames the image file to "Artist - Album.flac"
8. moves the flac image to the new folder
9. renames the log file to "Artist - Album.log"
10. moves the log file to the new folder
11.
rips individual mp3s using the embedded cue sheet in the flac fileSteps 1 - 10 will also work for individual files (assuming you manually create the cue sheet - EAC Noncompliant - before ripping and encoding the files)
a typical EAC command line would be:
/c C:\flac\flacattack\flacattack.exe "C:\eac\flac.exe" %s "5" "%a" "%t" "%g" "%y" "%n" "%m" "_" "C:\eac\lame.exe" "y"you need:
1. /c
2. location of flacattack executable (I would definitely try this with a path with NO spaces)
3. location of flac executable
4. %s (source - no quotes)
5. "5" (this is the compression of the flac file and can be 0 - 8)
6. "%a" (artist - yes quotes)
7. "%t" (title - yes quotes)
8. "%g" (album - yes quotes)
9. "%y" (date - yes quotes)
10. "%n" (tracknumber - yes quotes)
11. "%m" (genre - yes quotes)
12. "_" (this is to replace illegal characters that may appear in artist/album/track names, it can be any legal character)
13. location of lame executable
14. "y" (whether or not to move the log file - can be "y" or "n" - yes quotes)
I recommend copying this command line exactly and then changing only the location of the flacattack, flac, and lame executablesThis is kind of cumbersome right now, but gives you some options. I hope to fix this soon. There is some help in the readme.txt file but it is incomplete.
You can download the files at
http://www.uninformative.com/flacattack.zip.
You need the newest version of Flac - 1.1.1. Feel free to post here or send me an email with questons/suggestions.