Well, the problem I have with FLAC is that it has to be converted back to wav before it can be recoded back to a compressed format, which means even more of a problem than suing REAC /EAC to convert from a wave file alone.
I can't even figure out how to get EAC to compress from wav, except individual files and then without naming correctly. So yes, REACT/EAC is hard to use if you are not ripping from the disk in the first place.
It is bizaare how my JVC car stereo needs the folders named, I agree, and a total bitch too. I suppose that they had no way of alphabatizing the folder contents without a more robust hardware CPU. Let's jsut drop teh auto 001. 002 naming for now. What I need to do is as you say--create the folders alphabetically. Then I can go back and batch rename them 001Axx, 002Bxx and so on.
So I see how to set up the ini file and I've done it. I can get it to write from CD to FLAC, but it won't create A self contained commented ini file.an aac file. It creates the directories, and says no errors, but there is no file in the directory.
Also, you now what would be SUPER nice and probably prevent 90% of the problems people like me have? I commented ini file. Each line could be commented with an explanation of what the variables are, such as compression tags, etc. Then everything would be in one file. I know when I use to set up server side scripts, cgi, java, vb, etc., the scripts that had their command files commented out with all the necessary variables, it was very easy to plug those in fast and get real results w/o having to bother the net admins.
So you would ahve something like this throughout the ini file or a comment.ini file that we could bring up side by side:
I'm using the only part I understand well enough to give an example:
[UserTrackFormats]
Flac=0
COMMENTED OUT LINE: "0"= off / "1" = on for each encoder. <--of course everyone know this but you get my point. In the actual compression settings, each setting could be given also, all the way down the line for each variable.
Wavpack=0
LameMP3=0
NeroAac=1
iTunesAac=0
OggEnc2=0
I realize making this "comment_ini.ini would take some time, but I think it would go a long way to create much needed clarity for this file and settings.
At the top could be a short explanation of what REACT does and how to use it with EAC:
e.g., Use react o control EAC for ease of operation. To use react, use the F keys as outlined below, after the ini file is created as you want it. Alternately you can, etc., etc. and I can't write anymore because I don't understand it enough to cdontinue.
A self contained commented ini file. What do you think?
BTW what is the compression setting for LAME and Nero aac for the next quality setting higher than 128? I think I will use that setting. I think it's 160kbps for MP3, but whatdoes that transfer as for the REACT ini file?
Last, how do I tell REACT to STOP deleting my wav files when I tell EAC to compress them? Yes, Delete Wav after compression is unchecked in EAC.
Thanks Soul.
QUOTE (Synthetic Soul @ Sep 27 2007, 05:35)

1. Have you given up on the idea of using FLAC? Are you ripping to a WAVE image or one WAVE per track? I'm not sure that REACT is set up to rip to WAVE tracks and keep them. I suppose you would just have to move them before they are deleted.
Let's say that you wanted to rip to FLAC and AAC. In this case you would Set
FLAC=1 and
NeroAac=1 under the
[UserTrackFormats] section of the INI. When you pressed F4 REACT would create both FLAC tracks and AAC tracks in the folders specified by
TrackDir_Flac and
TrackDir_AAC under the
[UserOutputNames] section of the INI.
As I say, for WAVE tracks it's actually a little more complicated, so I'd rather you confirm first.
2. If you have existing WAVEs you would like to convert you can use EAC, but a better option would be to use NeroAACEnc on the commandline, or foobar. EAC/REACT's forté is ripping and processing.
3. I actually think that this is quite tricky, and I wonder about the logistics of it. Would you be planning to rip your discs in alphabetical order? If not, it seems like it could be a bitch to skip to a certain album. I can't believe that your stereo does this - it's bizarre.
I have devised some code that could be put into your CFG to do it.
CODE
REM Retrieve counter value, format, and update
SET /P counter=<"@reactdir@\counter.txt"
IF "%counter%" EQU "" SET counter=1
SET /A counter=%counter%
SET counterString=000%counter%
SET counterString=%counterString:~-3%
SET /A counter+=1
ECHO %counter% >"@reactdir@\counter.txt"
This code will utilise a text file it will create in the REACT directory, "counter.txt", to store the current counter value. To use the formatted value you would use the DOS variable
%counterString%, e.g.:
In REACT.ini:
CODE
TrackDir_AAC=@mymusic@\Aac\XXX-$cdartist$
In REACT-track.cfg:
CODE
CALL SET TrackDir_AAC=%%TrackDir_AAC:XXX=%counterString%%%
So, you'd put the top CFG code somewhere near the top of your CFG to create the
%counterString% variable. Then, before you try using
%TrackDir_AAC% - which is set using
TrackDir_AAC in the INI file - the second piece of code will replace "XXX" with the value of the counter.
A little convoluted, but I fail to see a better option at the moment.