Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: REACT Question--filenaming. (Read 3750 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

REACT Question--filenaming.

I thought I posted this, but I guess I was delirious late this morning.

I'm now using REACT/EAC to rip and encode CD. After a hard steep learning curve, I'm beginning to like this combination. It's fast and easy.

I have some things I'd like to clean up

1. Get rid of the gainlog.txt. In the file directory. Unless that file is there for a reason, I don't need it in every file folder.

2. The file names are like this:

01. Draw The Line.m4a

How can I change that output to?:

01-Draw The Line.m4a

Thanks.

REACT Question--filenaming.

Reply #1
Code: [Select]
[UserOutputNames]
TrackName_SA=$track$-$title$
TrackName_VA=$track$-$title$ [$artist$]
TrackName_SA_acdir=$n-$~t
TrackName_VA_acdir=$n-$~t [$~a]

REACT Question--filenaming.

Reply #2
Code: [Select]
[UserOutputNames]
TrackName_SA=$track$-$title$
TrackName_VA=$track$-$title$ [$artist$]
TrackName_SA_acdir=$n-$~t
TrackName_VA_acdir=$n-$~t [$~a]



Junon thanks. Will that also get rid of the gianlog.txt file?

REACT Question--filenaming.

Reply #3
Junon thanks. Will that also get rid of the gianlog.txt file?

Close to the bottom of REACT-image.cfg there's a NeroAAC section. Search for this line there:
Code: [Select]
IF %add_rg%==1 @tools@\aacgain.exe %ApplyAG_AacGain% *.m4a > gainlog.txt

Just remove everything that follows after *.m4a:
Code: [Select]
IF %add_rg%==1 @tools@\aacgain.exe %ApplyAG_AacGain% *.m4a


In case the EAClog.txt files were a little annoying as well (tycho's default settings add these ones to the flac copies):
Code: [Select]
COPY /Y "@eaclog@" "EAClog.txt"

Make the line look like this:
Code: [Select]
REM COPY /Y "@eaclog@" "EAClog.txt"

REACT Question--filenaming.

Reply #4
Junon thanks. Will that also get rid of the gianlog.txt file?

Close to the bottom of REACT-image.cfg there's a NeroAAC section. Search for this line there:
Code: [Select]
IF %add_rg%==1 @tools@\aacgain.exe %ApplyAG_AacGain% *.m4a > gainlog.txt

Just remove everything that follows after *.m4a:
Code: [Select]
IF %add_rg%==1 @tools@\aacgain.exe %ApplyAG_AacGain% *.m4a


In case the EAClog.txt files were a little annoying as well (tycho's default settings add these ones to the flac copies):
Code: [Select]
COPY /Y "@eaclog@" "EAClog.txt"

Make the line look like this:
Code: [Select]
REM COPY /Y "@eaclog@" "EAClog.txt"



Mine says:
IF @ApplyAlbumGain@==1 @tools@\aacgain.exe %ApplyAG_AacGain% *.m4a > gainlog.txt

REACT Question--filenaming.

Reply #5
Doesn't matter. It looks like you're just using a slightly different revision of the script.

REACT Question--filenaming.

Reply #6
Doesn't matter. It looks like you're just using a slightly different revision of the script.


That's what I thought, but just wanted to make sure. Thanks Junon. REACT/EAC is really a good combination for automated ripping. I put in the time and now it just simply rocks.