Help - Search - Members - Calendar
Full Version: REACT formating problem
Hydrogenaudio Forums > CD-R and Audio Hardware > CD Hardware/Software
Realityfreak
Hi

I've got a little problem with REACT. I'd like my Imagename to look like this: "Album Artist - [Year] Albumname"
But all I get is: "Album Artist - Albumname". It's strange though, since REACT correctly creates the Folder "[Year] Albumname".

Here are my Settings:

The REACT.ini ...

CODE
[Settings]
Version=2.0.ssb16
ImageExt=wv
ImageNaming=$artist$ - [$year$] $album$
ImageHotKey={F10}
TracksHotKey={F4}
TracksHotVal=+{F5}
VA=Various Artists
CreateAllCuesheets=1
RunCoverDownloader=0
CoverDownloader=D:\Program Files\Audio\REACT2\coverdownloader\albumart.exe
CoverDownloaderXUI=0
EAC=D:\Program Files\Audio\Exact Audio Copy\EAC.exe
Tools=D:\Program Files\Audio\REACT2\tools
MinimizeCompressionWindow=1
ProcessPriority=1
Sla_Bks_Col_Qst_Bar_Quo_Ast_Lt_Gt=-|-|-||!|'|#|[|]
Test=1

[UserTrackFormats]
Flac=0
Wavpack=0
Tak=0
LameMP3=0
NeroAac=0
iTunesAac=0
OggEnc2=0

[UserOutputNames]
OutRoot=H:\Music\EAC
ImageDir_Flac=H:\Music\FLAC\$genre$\$cdartist$\[$year$] $album$
ImageDir_Wavpack=H:\Music\WavPack & MP3\$genre$\$cdartist$\[$year$] $album$
ImageDir_Tak=H:\Music\TAK\$genre$\$cdartist$\[$year$] $album$
ImageDir_MP3=H:\Music\WavPack & MP3\$genre$\$cdartist$\[$year$] $album$
TrackDir_Flac=H:\Music\FLAC\$genre$\$cdartist$\[$year$] $album$
TrackDir_Wavpack=H:\Music\WavPack & MP3\$genre$\$cdartist$\[$year$] $album$
TrackDir_Tak=H:\Music\TAK\$genre$\$cdartist$\[$year$] $album$
TrackDir_MP3=H:\Music\WavPack & MP3\$genre$\$cdartist$\[$year$] $album$
TrackDir_AAC=H:\Music\AAC\$genre$\$cdartist$\[$year$] $album$
TrackDir_OGG=H:\Music\OGG\$genre$\$cdartist$\[$year$] $album$
TrackName_SA=$track$. $title$ - $artist$
TrackName_VA=$track$. $title$ - $artist$
TrackName_SA_acdir=$n. $~t - $~a
TrackName_VA_acdir=$n. $~t - $~a

[UserSettings]
Debug=0
Comment=Created with EAC/REACT2, @curdate@
EmbedCover=0
ReplayGain=1
ApplyAlbumGain=1
AdjustAlbumGain_dB=0
AddCuesheetAG=1
UseWaveGainAG=1
Opt_Flac=-5 -f
Opt_Wavpack=-hmy
Opt_Tak=-pN -overwrite
Opt_LameMP3=-V5 -q0 --vbr-new --noreplaygain --nohist
Opt_NeroAac=-lc -q 0.21
Opt_iTunesAac=-d -s 2000
Opt_OggEnc2=-q 3.0
Ver_Flac=1.1.3
Ver_Wavpack=4.50
Ver_Tak=1.0.1
Ver_LameMP3=3.98
Ver_NeroAac=1.0.0.2
Ver_OggEnc2=2.83 Lancer aoTuV b5

[DefaultMetaData]
discnumber=1
totaldiscs=1
discname=
mixartist=
albumtype=


... and the REACT-image.cfg (if needed)

CODE

@ECHO OFF
CHCP 1252 | PROMPT
TITLE "@album@"

REM Copyright © Tycho, 2006
REM
REM ** Ripping to .wav image.
REM **
REM ** To archive a CD as one large "image", you must SET
REM ** ImageExt=... in the REACT.ini file (Press Alt-F2).
REM ** This will set the @ImageExt@ variable. Extensions
REM ** currently supported: flac, wv, mp3. Set to 'wav'
REM ** for no image archiving (default).
REM **
REM ** Also creates tracks by encoding directly to tracks, using ACDIR.
REM **
REM ** Flac requires flac.exe/metaflac.exe (v1.1.3)
REM ** NeroAac requires NeroAacEnc.exe/NeroAacTag.exe/AacGain.exe.
REM ** OggEnc2 requires OggEnc2.exe/VorbisGain.exe.
REM **
REM ** I prefer applying album gain 92dB to get a reasonable
REM ** volume for my DAP. The RG tags are still relative
REM ** to 89dB SPL, i.e. album gain will be about -3.0dB.

REM ============== Begin Main Script ==================


IF @Debug@==1 ECHO ON

IF @various@==0 SET TrackName=@TrackName_SA_acdir@
IF @various@==1 SET TrackName=@TrackName_VA_acdir@

SET add_rg=@ReplayGain@
SET have_cover=0
SET embed_cover=0

IF NOT @ReplayGain@==1 GOTO end_RG
SET RG_Flac=--replay-gain
SET RG_MetaFlac=--add-replay-gain
SET RG_MetaMP3=--replay-gain
:end_RG

IF NOT @ApplyAlbumGain@==1 GOTO end_apply_AG
SET ApplyAG_MetaMP3=--apply-gain album@AdjustAlbumGain_dB@
SET ApplyAG_AacGain=/a /o /c /d @AdjustAlbumGain_dB@
SET add_rg=1
:end_apply_AG

IF EXIST "@cover@" (
SET have_cover=1
SET embed_cover=@EmbedCover@
)

IF @various@==0 (
SET ArtistField=artist
SET MP3Artist=--artist "@artist@"
) else (
SET ArtistField=album artist
SET MP3Artist=--user-text "[album artist]@VA@" --frame "TPE2:@VA@"
)


REM ** Create Disc-related tags if we have a set

REM If a disc name has been provided
IF "@discname@" EQU "" GOTO end_discname
SET discName=discname
SET discName=@%discname%@
IF "@discname@" EQU "%discName%" GOTO end_discname

REM Set tagging switches
SET Disc_Flac=-T "discname=@discname@"
SET Disc_Wavpack=-w "discname=@discname@"
REM SET Disc_MP3=--frame TSST:"@discname@"
SET Disc_MP3=--frame "TXXX[setsubtitle]:@discname@"
SET Disc_OggEnc2=-c "discname=@discname@"
SET Disc_Tak=-t "discname=@discname@"
SET Disc_Flac_acdir=-T $qdiscname=@discname@$q
SET Disc_Wavpack_acdir=-w $qdiscname=@discname@$q
REM SET Disc_MP3_acdir=--frame TSST:$q@discname@$q
SET Disc_MP3_acdir=--frame $qTXXX[setsubtitle]:@discname@$q
SET Disc_OggEnc2_acdir=-c $qdiscname=@discname@$q
SET Disc_Tak_acdir=-t $qdiscname=@discname@$q

REM Add disc name to image and track folder paths
SET imageDir=%imageDir%\$discname$
SET trackDir=%trackDir%\$discname$

GOTO :end_discnumber

:end_discname

REM Ensure that we have numeric values
SET /A discNumber = @discnumber@ + 0
SET /A totalDiscs = @totaldiscs@ + 0

REM IF a valid disc number and total number of discs has been provided
IF %totalDiscs% LEQ 1 GOTO :end_discnumber
IF %discNumber% LEQ 0 GOTO :end_discnumber

REM Set tagging switches
SET Disc_Flac=-T "discnumber=@discnumber@" -T "totaldiscs=@totaldiscs@"
SET Disc_Wavpack=-w "discnumber=@discnumber@" -w "totaldiscs=@totaldiscs@"
SET Disc_MP3=--frame TPOS:"@discnumber@/@totaldiscs@"
SET Disc_NeroAac=--disk "@discnumber@/@totaldiscs@"
SET Disc_OggEnc2=-c "discnumber=@discnumber@" -c "totaldiscs=@totaldiscs@"
SET Disc_Tak=-t "discnumber=@discnumber@" -t "totaldiscs=@totaldiscs@"
SET Disc_Flac_acdir=-T $qdiscnumber=@discnumber@$q -T $qtotaldiscs=@totaldiscs@$q
SET Disc_Wavpack_acdir=-w $qdiscnumber=@discnumber@$q -w $qtotaldiscs=@totaldiscs@$q
SET Disc_MP3_acdir=--frame TPOS:$q@discnumber@/@totaldiscs@$q
SET Disc_NeroAac_acdir=--disk $q@discnumber@/@totaldiscs@$q
SET Disc_OggEnc2_acdir=-c $qdiscnumber=@discnumber@$q -c $qtotaldiscs=@totaldiscs@$q
SET Disc_Tak_acdir=-t $qdiscnumber=@discnumber@$q -t $qtotaldiscs=@totaldiscs@$q

REM Add disc number to image and track folder paths
SET imageDir=%imageDir%\Disc @discnumber@
SET trackDir=%trackDir%\Disc @discnumber@

:end_discnumber


SET run_wavegain=@UseWaveGainAG@
IF @AddCuesheetAG@==1 SET run_wavegain=1

IF %run_wavegain%==0 GOTO end_wavegain
SET wg_tmp=wg_%RANDOM%
@tools@\WaveGain.exe --album "@source@" --exec ECHO '%%ALBUM_GAIN%%'%%ALBUM_PEAK%%'%%ALBUM_NEW_PEAK%%'%%ALBUM_SCALE%%'> %wg_tmp%.txt
FOR /F "usebackq tokens=1-6 delims='" %%a IN (%wg_tmp%.txt) DO (
SET album_gain=%%b
SET album_peak=%%c
SET album_new_peak=%%d
SET album_scale=%%e
)
ECHO REM REPLAYGAIN_ALBUM_GAIN %album_gain% dB> %wg_tmp%.cue
ECHO REM REPLAYGAIN_ALBUM_PEAK %album_peak%>> %wg_tmp%.cue
ECHO REM REPLAYGAIN_ALBUM_SCALE %album_scale%>> %wg_tmp%.cue
DEL %wg_tmp%.txt
TYPE "@cuesheet@" >> %wg_tmp%.cue
MOVE /Y %wg_tmp%.cue "@cuesheet@"
:end_wavegain


REM ** Transfer RG values from Wavgain calculations, instead of recalculation.
IF @UseWaveGainAG@==1 IF %add_rg%==1 (
SET RG_Flac=-T "replaygain_album_gain=%album_gain% dB" -T "replaygain_album_peak=%album_peak%"
SET RG_MetaFlac=--set-tag="replaygain_album_gain=%album_gain% dB" --set-tag="replaygain_album_peak=%album_peak%"
SET RG_Wavpack=-w "replaygain_album_gain=%album_gain% dB" -w "replaygain_album_peak=%album_peak%"
SET RG_Wavpack_acdir=-w $qreplaygain_album_gain=%album_gain% dB$q -w $qreplaygain_album_peak=%album_peak%$q
SET RG_Tak=-t "replaygain_album_gain=%album_gain% dB" -t "replaygain_album_peak=%album_peak%"
SET RG_Tak_acdir=-t $qreplaygain_album_gain=%album_gain% dB$q -t $qreplaygain_album_peak=%album_peak%$q
SET RG_MetaMP3=--user-text "[replaygain_album_gain]%album_gain% dB" --user-text "[replaygain_album_peak]%album_peak%"
SET RG_OggEnc2_acdir=-c $qreplaygain_album_gain=%album_gain% dB$q -c $qreplaygain_album_peak=%album_peak%$q
)

REM ** Apply AlbumGain by using --scale <factor> computed from WaveGain. Only for MP3 and OGG.
IF @UseWaveGainAG@==1 IF @ApplyAlbumGain@==1 (
SET ApplyAG_Lame=--scale %album_scale%
SET ApplyAG_MetaMP3=--apply-gain @AdjustAlbumGain_dB@
SET RG_MetaMP3=--user-text "[replaygain_album_gain]0.0 dB" --user-text "[replaygain_album_peak]%album_new_peak%"
SET RG_OggEnc2_acdir=--scale %album_scale% -c $qreplaygain_album_gain=0.0 dB$q -c $qreplaygain_album_peak=%album_new_peak%$q
)


REM ---- Image ----


REM Ensure that the EAC log is available
:CheckForLog
IF NOT EXIST "@eaclog@" GOTO Pause


IF NOT @ImageExt@==flac GOTO end_flac_image
SET dest="@ImageDir_Flac@%imageDir%"
IF NOT EXIST %dest% MKDIR %dest%
IF %embed_cover%==1 SET Cover_tag=--picture="|image/jpeg|||@cover@"
@tools@\flac.exe @Opt_Flac@ %RG_Flac% %Cover_tag% %Disc_Flac% -T "%ArtistField%=@cdartist@" -T album="@album@" -T totaltracks="@numtracks@" -T date="@year@" -T genre="@genre@" -T comment="@comment@" -T encoded-by="RAS" -T encoding="Flac @Ver_Flac@ @Opt_Flac@" --tag-from-file="cuesheet=@cuesheet@" --tag-from-file="eaclog=@eaclog@" "@source@" -o "@image@"
MOVE /Y "@image@" %dest%
MOVE /Y "@cuesheet@" %dest%
IF %have_cover%==1 COPY /Y "@cover@" %dest%\"@basename@.jpg"
:end_flac_image


IF NOT @ImageExt@==wv GOTO end_wavpack_image
SET dest="@ImageDir_Wavpack@%imageDir%"
IF NOT EXIST %dest% MKDIR %dest%
@tools@\wavpack.exe @Opt_Wavpack@ %RG_Wavpack% %Disc_Wavpack% -w "%ArtistField%=@cdartist@" -w album="@album@" -w totaltracks="@numtracks@" -w year="@year@" -w genre="@genre@" -w comment="@comment@" -w encodedby="RAS" -w encodersettings="Wavpack @Ver_Wavpack@ @Opt_Wavpack@" -w cuesheet="@@cuesheet@" -w eaclog="@@eaclog@" "@source@" "@image@"
IF @ReplayGain@==1 IF @UseWaveGainAG@==0 @tools@\wvgain.exe -a "@image@"
TITLE "@album@"
MOVE /Y "@image@" %dest%
MOVE /Y "@cuesheet@" %dest%
IF %have_cover%==1 COPY /Y "@cover@" %dest%\"@basename@.jpg"
:end_wavpack_image


IF NOT @ImageExt@==tak GOTO end_tak_image
SET dest="@ImageDir_Tak@%imageDir%"
IF NOT EXIST %dest% MKDIR %dest%
@tools@\takc.exe -e @Opt_Tak@ "@source@" "@image@"
@tools@\tag.exe %RG_Tak% %Disc_Tak% -t "%ArtistField%=@cdartist@" -t album="@album@" -t totaltracks="@numtracks@" -t year="@year@" -t genre="@genre@" -t comment="@comment@" -t encodedby="RAS" -t encodersettings="TAK @Ver_Tak@ @Opt_Tak@" -f cuesheet="@cuesheet@" -f eaclog="@eaclog@" "@image@"
MOVE /Y "@image@" %dest%
MOVE /Y "@cuesheet@" %dest%
IF %have_cover%==1 COPY /Y "@cover@" %dest%\"@basename@.jpg"
:end_tak_image


IF NOT @ImageExt@==mp3 GOTO end_lame_image
SET dest="@ImageDir_MP3@%imageDir%"
IF NOT EXIST %dest% MKDIR %dest%
IF %embed_cover%==1 SET Cover_tag=--pict "{3}@cover@"
@tools@\lame.exe @Opt_LameMP3@ %ApplyAG_Lame% "@source@" "@image@"
@tools@\metamp3.exe %RG_MetaMP3% %Cover_tag% %Disc_MP3% %MP3Artist% --album "@album@" --track @numtracks@ --year "@year@" --genre "@genre@" --comment "@comment@" --frame TENC:"RAS" --frame TSSE:"LAME @Ver_LameMP3@ @Opt_LameMP3@" "@image@"
IF @ApplyAlbumGain@==1 @tools@\metamp3.exe %ApplyAG_MetaMP3% "@image@"
MOVE /Y "@image@" %dest%
MOVE /Y "@cuesheet@" %dest%
IF %have_cover%==1 COPY /Y "@cover@" %dest%\"@basename@.jpg"
:end_lame_image


REM ---- Tracks ----


IF NOT @Flac@==1 GOTO end_flac_tracks
SET dest="@TrackDir_Flac@%trackDir%"
IF NOT EXIST %dest% MKDIR %dest%
PUSHD %dest%
IF @various@==1 SET VA_tag=-T $qalbum artist=@VA@$q
IF %embed_cover%==1 SET Cover_tag=--picture=$#x
@tools@\acdir.exe --overwrite --output "%TrackName%.flac" --extra-opt "|image/jpeg|||@cover@" --pipe "TITLE $n/$N flac $#T & @tools@\flac.exe @Opt_Flac@ %Cover_tag% %VA_tag% %Disc_Flac_acdir% -T artist=$#a -T album=$#T -T title=$#t -T tracknumber=$n/$N -T date=$q@year@$q -T genre=$q@genre@$q -T comment=$q@comment@$q -T encoded-by=$qRAS$q -T encoding=$qFlac @Ver_Flac@ @Opt_Flac@$q - -o $#o" "@sourcecuesheet@"
IF %add_rg%==1 @tools@\Glob.exe -v -c @tools@\metaflac.exe %RG_MetaFlac% *.flac
COPY /Y "@eaclog@" "EAClog.txt"
IF %have_cover%==1 COPY /Y "@cover@" "folder.jpg"
IF EXIST "@albumfile@.[*].cue" COPY /Y "@albumfile@.[*].cue" .
POPD
:end_flac_tracks


IF NOT @Wavpack@==1 GOTO end_wavpack_tracks
SET dest="@TrackDir_Wavpack@%trackDir%"
IF NOT EXIST %dest% MKDIR %dest%
PUSHD %dest%
IF @various@==1 SET VA_tag=-w $qalbum artist=@VA@$q
@tools@\acdir.exe --overwrite --output "%TrackName%.wv" --pipe "@tools@\wavpack.exe @Opt_Wavpack@ %RG_Wavpack_acdir% %VA_tag% %Disc_Wavpack_acdir% -w artist=$#a -w album=$#T -w title=$#t -w track=$n/$N -w year=$q@year@$q -w genre=$q@genre@$q -w comment=$q@comment@$q -w encodedby=$qRAS$q -w encodersettings=$qWavpack @Ver_Wavpack@ @Opt_Wavpack@$q - $#o" "@sourcecuesheet@"
IF @ReplayGain@==1 IF @UseWaveGainAG@==0 @tools@\wvgain.exe -a *.wv
COPY /Y "@eaclog@" "EAClog.txt"
IF %have_cover%==1 COPY /Y "@cover@" "folder.jpg"
IF EXIST "@albumfile@.[*].cue" COPY /Y "@albumfile@.[*].cue" .
POPD
TITLE "@album@"
:end_wavpack_tracks


IF NOT @Tak@==1 GOTO end_tak_tracks
SET dest="@TrackDir_Tak@%trackDir%"
IF NOT EXIST %dest% MKDIR %dest%
PUSHD %dest%
IF @various@==1 SET VA_tag=-t $qalbum artist=@VA@$q
@tools@\acdir.exe --overwrite --output "%TrackName%.wav" --extract "@sourcecuesheet@"
@tools@\acdir.exe --exec "@tools@\takc.exe -e -overwrite @Opt_Tak@ $q%TrackName%.wav$q $q%TrackName%.tak$q && @tools@\tag.exe %RG_Tak_acdir% %VA_tag% %Disc_Tak_acdir% -t artist=$#a -t album=$#T -t title=$#t -t track=$n/$N -t year=$q@year@$q -t genre=$q@genre@$q -t comment=$q@comment@$q -t encodedby=$qRAS$q -t encodersettings=$qTAK @Ver_Tak@ @Opt_Tak@$q $q%TrackName%.tak$q && DEL $q%TrackName%.wav$q" "@sourcecuesheet@"
COPY /Y "@eaclog@" "EAClog.txt"
IF %have_cover%==1 COPY /Y "@cover@" "folder.jpg"
IF EXIST "@albumfile@.[*].cue" COPY /Y "@albumfile@.[*].cue" .
POPD
:end_tak_tracks


IF NOT @LameMP3@==1 GOTO end_lame_tracks
SET dest="@TrackDir_MP3@%trackDir%"
IF NOT EXIST %dest% MKDIR %dest%
PUSHD %dest%
IF @various@==1 SET VA_tag=--user-text $q[album artist]@VA@$q --frame $qTPE2:@VA@$q
IF %embed_cover%==1 SET Cover_tag=--pict $#x
@tools@\acdir.exe --overwrite --output "%TrackName%.mp3" --extra-opt "{3}@cover@" --pipe "TITLE $n/$N mp3 $#T & @tools@\lame.exe @Opt_LameMP3@ %ApplyAG_Lame% - $#o & @tools@\metamp3.exe %Cover_tag% %VA_tag% %Disc_MP3_acdir% --artist $#a --album $#T --title $#t --track $n/$N --year $q@year@$q --genre $q@genre@$q --comment $q@comment@$q --frame TENC:$qRAS$q --frame TSSE:$qLAME @Ver_LameMP3@ @Opt_LameMP3@$q $#o" "@sourcecuesheet@"
IF %add_rg%==1 @tools@\metamp3.exe %RG_MetaMP3% *.mp3
IF @ApplyAlbumGain@==1 @tools@\metamp3.exe %ApplyAG_MetaMP3% *.mp3
REM COPY /Y "@eaclog@" "EAClog.txt"
IF %have_cover%==1 COPY /Y "@cover@" "folder.jpg"
POPD
:end_lame_tracks


IF NOT @NeroAac@==1 GOTO end_nero_aac_tracks
SET dest="@TrackDir_AAC@%trackDir%"
IF NOT EXIST %dest% MKDIR %dest%
PUSHD %dest%
IF @various@==1 SET VA_tag=--albumArtist $q@VA@$q --compilation true
IF %embed_cover%==1 SET Cover_tag=--artwork $#x
@tools@\acdir.exe --overwrite --output "%TrackName%.m4a" --extra-opt "@cover@" --pipe "TITLE $n/$N aac $#T & @tools@\neroAacEnc.exe @Opt_NeroAac@ -ignorelength -if - -of $#o & @tools@\AtomicParsley.exe $#o -o REACT_tmp.m4a %Cover_tag% %VA_tag% %Disc_NeroAac_acdir% --artist $#a --album $#T --tracknum $n/$N --title $#t --year $q@year@$q --genre $q@genre@$q --comment $q@comment@$q --encodingTool $qneroAacEnc @Ver_NeroAac@ @Opt_NeroAac@$q & MOVE /Y REACT_tmp.m4a $#o" "@sourcecuesheet@"
IF @ApplyAlbumGain@==1 @tools@\aacgain.exe %ApplyAG_AacGain% *.m4a > gainlog.txt
REM COPY /Y "@eaclog@" "EAClog.txt"
IF %have_cover%==1 COPY /Y "@cover@" "folder.jpg"
POPD
:end_nero_aac_tracks


IF NOT @OggEnc2@==1 GOTO end_oggenc_tracks
SET dest="@TrackDir_OGG@%trackDir%"
IF NOT EXIST %dest% MKDIR %dest%
PUSHD %dest%
IF @various@==1 SET VA_tag=-c $qalbum artist=@VA@$q
@tools@\acdir.exe --overwrite --output "%TrackName%.ogg" --pipe "TITLE $n/$N ogg $#T & @tools@\oggenc2.exe @Opt_OggEnc2@ %RG_OggEnc2_acdir% %VA_tag% %Disc_OggEnc2_acdir% -c artist=$#a -c album=$#T -c title=$#t -c tracknumber=$n/$N -c date=$q@year@$q -c genre=$q@genre@$q -c comment=$q@comment@$q -c encoded-by=$qRAS$q -c encoding=$qOggEnc @Ver_OggEnc2@ @Opt_OggEnc2@$q - -o $#o" "@sourcecuesheet@"
IF @ReplayGain@==1 IF @UseWaveGainAG@==0 @tools@\vorbisgain.exe -a *.ogg
REM COPY /Y "@eaclog@" "EAClog.txt"
IF %have_cover%==1 COPY /Y "@cover@" "folder.jpg"
POPD
:end_oggenc_tracks


REM ================ End Main Script ===================


IF @Debug@==1 (
PAUSE
EXIT
)

REM ** Cleanup

DEL "@source@"
DEL "@eaclog@"
DEL "@cuesheet@"
DEL "@albumfile@.[*].cue"
DEL "@cover@"

REM ** Delete this .bat file:
DEL %0


GOTO :EOF

REM Pause for 2000 milliseconds and return to :CheckForLog
:Pause
@ECHO Waiting for EAC log file...
PING 1.1.1.1 -n 1 -w 2000 >NUL
GOTO CheckForLog


From the setting "ImageNaming=$artist$ - [$year$] $album$" in the REACT.ini I would think that REACT should correctly create the filename, but it somehow won't...

I hope someone could point out my mistake here.

Thanks

Rf

Edit 1: Now this is something... I thought the codebox prevents the code from inflating the whole post. How do I add scrollbars? (At least I thought it was possible to do so).
Edit 2: Misspelling
Akkurat
QUOTE(Realityfreak @ Jul 12 2008, 23:37) *
I've got a little problem with REACT. I'd like my Imagename to look like this: "Album Artist - [Year] Albumname"
But all I get is: "Album Artist - Albumname". It's strange though, since REACT correctly creates the Folder "[Year] Albumname".

Are you using Synthetic Soul's version of REACT? Have you tried my mod? (2.0.akku.b01: Fixed a rare bug with image filenames saved sometimes incorrectly.)

P.S. Use CODEBOX instead of CODE tags.
Realityfreak
QUOTE(Akkurat @ Jul 12 2008, 23:17) *

Are you using Synthetic Soul's version of REACT? Have you tried my mod? (2.0.akku.b01: Fixed a rare bug with image filenames saved sometimes incorrectly.)


Yes, I am currently using your latest Mod (the .ini file doesn't suggest that though, I didn't change the version number. I left it the way it came.)

Edit: (Thanks for your quick reply by the way...)
Realityfreak
BTW: If I add the year to the filename (befor saving it after pressing F10), It will correctly save the file.
Akkurat
QUOTE(Realityfreak @ Jul 13 2008, 00:23) *
Yes, I am currently using your latest Mod (the .ini file doesn't suggest that though, I didn't change the version number. I left it the way it came.)

Shit. I had this one user in January who had this problem also.. I did debug it with him some time but suddenly he disappered. sad.gif So, it was left open.. I've one old debug version still... maybe we should pick up that?

(the INI version is supposed to be like that since I've not (yet) changed anything in it... don't change it)

QUOTE(Realityfreak @ Jul 13 2008, 00:41) *
BTW: If I add the year to the filename (befor saving it after pressing F10), It will correctly save the file.

Say what? I'm sorry but I didn't quite understand what you're trying to say (maybe it's the whisky currently in my brain biggrin.gif). Can you elaborate more?

And yeah, does this happen every time or just sometimes?
Realityfreak
This semms to happen everytime I try to make an image of a CD.
What I ment befor is, that after I press F10 to create an Imagefile and REACT asks me where to save the *.eac file it suggests "Album Artist - Albumname.eac" as filname. If I manually change it to "Album Artist - [Year] Albumname.eac" REACT also creates the corresponing (correct) output ("Album Artist - [Year] Albumname.wv").

smile.gif
Akkurat
QUOTE(Realityfreak @ Jul 13 2008, 01:02) *
What I ment befor is, that after I press F10 to create an Imagefile and REACT asks me where to save the *.eac file it suggests "Album Artist - Albumname.eac" as filname. If I manually change it to "Album Artist - [Year] Albumname.eac" REACT also creates the corresponing (correct) output ("Album Artist - [Year] Albumname.wv").

Aaahh. Listen, you really should use a "fixed directory" and not choose everytime.. change your EAC options -> Directories -> Use this directory.

BUT, *sigh*, the correct image filename should appear in the save dialog anyways... I just tested this and every time the filename is changed to include the year (the filename flashes very quickly when the dialog pops up). sad.gif Are you using Vista? While updating the next version of REACT to use the latest AutoIt, I read that (IIRC) there were some fixes for AutoIt not recognizing some Vista window titles... maybe this will correct your problem... anyways, test first by setting the EAC option. If that doesn't work, PM me your email so I can send you a debug/test version. Ok? Test many times, It could be that changing that setting will make your REACT work like in the other user case I had (the year is sometimes chopped off).
Realityfreak
I'll give it a try (maybe not today, not to sure though. It's already bedtime in Switzerland ( tongue.gif ), and ripping with REACT in test&copy mode takes quite a while). Oh... and yes, I am currently using Vista Business.

I'll drop a note, if it still shouldn't work.

Thank you for your support.

Rf
Realityfreak
Just a small curiosity to end the day:

Actually, EAC/REACT is behaving strange anyway... It surly isn't linked to my REACT formatting problem, but it still does scare me though. Recently the ripping speed on the same drive with the same settings suddenly increased from ~1.8x to 5.4-6.2. It happend after adding the "spin up drive" feature (using a PX-716A, no -usefua option!!!).
Now I'm also concerned about the accuracy of my copies. smile.gif

But first comes the namingscheme problem... biggrin.gif

Good night
Akkurat
QUOTE(Realityfreak @ Jul 13 2008, 01:35) *
I'll give it a try (maybe not today, not to sure though. It's already bedtime in Switzerland ( tongue.gif ), and ripping with REACT in test© mode takes quite a while).

No hurry... at least I'm not in a hurry. smile.gif And you don't have to rip all the way thru CD's to test, just press F10 and see if the filename in the save dialog is correct... or if with "fixed dir", cancel the rip and check the dir for the filename.

It's sleeping time (for drunkards like me... no not really, just couple of 4cl's lalala.gif ) in Finland too.. only if I could stop listening Idris Muhammad's super funk/jazz music.. oh well, g'night.

EDIT: I doubt that REACT is responsible for the speed change... maybe you should open a new thread for that topic..
greynol
QUOTE(Realityfreak @ Jul 12 2008, 15:49) *
(using a PX-716A, no -usefua option!!!).

Pardon the intrusion, but I hope you aren't suggesting -usefua doesn't work with the PX-716A.
Realityfreak
Well, I'm still awake (who would have thought... biggrin.gif ). I'm also having the problem with my musiclibrary... I just can't seem to find an apropriate time to stop listening to it. smile.gif

About the test: Neither fixed nor varible directories can resolve the naming problem... sad.gif

QUOTE(greynol @ Jul 13 2008, 01:03) *

QUOTE(Realityfreak @ Jul 12 2008, 15:49) *
(using a PX-716A, no -usefua option!!!).

Pardon the intrusion, but I hope you aren't suggesting -usefua doesn't work with the PX-716A.



Sorry, I'm not suggesting that. What I ment was, that I don't use that switch. I didn't think, that my statement could cause such confusion (but after rereading it myself, I must say that it does imply that the switch isn't available. Sorry).
greynol
With few exceptions (if any) I get the best results with -usefua combined with C2 pointers. For this reason I can't understand why someone wouldn't want to use it.

EDIT: ...and hence the reason why I asked.
Realityfreak
QUOTE(greynol @ Jul 13 2008, 01:14) *

With few exceptions (if any) I get the best results with -usefua combined with C2 pointers. For this reason I can't understand why someone wouldn't want to use it.

EDIT: ...and hence the reason why I asked.


Even I'm not too sure anymore, why I'm not using the -usefua switch. It's just that I read about it when it first appeard, but didn't follow the article.

If it's just as secure, then maybe I'll just give it a try.

Just to be sure: I have to add the -usefua switch in the REACT.ini and disable the "drive caches audio" switch?

------------------

@ Akkurat

Since nothing worked here on the naming scheme problem, I'll PM my e-mail adress as recomended.

Rf
greynol
I'm useless when it comes to REACT, but yes, you need to tell EAC that your drive is non-caching.

I suggest conducting a test pass in absence of AR validation. It would be great if REACT could somehow automate this process.

My apologies for the distraction. I can split this part out if you like.
Realityfreak
QUOTE(greynol @ Jul 13 2008, 01:36) *

I'm useless when it comes to REACT, but yes, you need to tell EAC that your drive is non-caching.

I suggest conducting a test pass in absence of AR validation. It would be great if REACT could somehow automate this process.

My apologies for the distraction. I can split this part out if you like.


About splitting this topic from the thread: I'm not to sure as to how long the new topic would last. If it's going to be a Topic like "Testing REACT with -usefua" or something similar and some testsubjects pop up, then I'd think it would be best to split it now.

But thats only after I give this information (I'm not to sure as to how helpful it is though). I made a dumpfile of EAC running REACT and opened it in Notepad (primitive, I know smile.gif ). I searched for the command usefua, and found it.

I'll post the part of the code containing the switch as soon as Notepad respnds) I guess it takes a while to process 131 MB of gibberish, even on a Xeon X3350.
greynol
Oh, and it is a good idea to make sure nothing is interfering with the FUA command like SPTD. Here's a recent thread on testing it...

http://www.hydrogenaudio.org/forums/index....showtopic=64310

BTW, you'll see the OP is using it with REACT successfully. wink.gif
Realityfreak
Well, I guess I won't be posting the code afterall, since -usefua appears more than once in the dumpfile. But there is one crucial hint, that it could have accepted the -usefua command from the REACT.ini. The dumpfile contains the directory listing "D:\Program Files\Audio\Exact Audio Copy\EAC.exe" -usefua, which I actually specified in the REACT.ini.

But I guess that it will only be fact after testing the integrity of the copied files using the switch in REACT or start REACT without the -usefua switch and compare the two dumpfiles...

On the other hand, the EACLog doesn't imply the usage of the switch (should it?). All I get for information is: Command line compressor: D:\Program Files\Audio\REACT2\REACT.exe (should there be a -usefua here at the end?)
greynol
The EAC log won't give you any information about command line switches included when starting EAC, which is where -usefua is applied. Be sure to check the link I gave in my previous response.
Realityfreak
Well, after comparing the two dumpfiles I came to this conclusion: EAC using REACT with the -usefua command integrated into the REACT.ini shows the command a few times, where as EAC using REACT without the -usefua command only shows the command exactly once, listed at the same location combined with a lot of other commands and fragments of the option panels... My guess is, that that is a list of the possible options available, can't say for sure though.

The list of commands:

-NOSTOPCOMMAND -NOTESTUNIT -NOSPEEDSEL -NOREADSUB -HTTP1.1 -NOCDTEXT -NOMULTISESSION -EXTRACTMP3 -EXTRACTWAV -NOSHOWBUFFER -FORCERAW -FORCEPLEXTOR -FORCETEAC -FORCESONY -USEFUA -SLOWCONNECT -MTRH -MZEE -CLOSE -NOCORRECTION -DRIVE

The context they stand in:


CODE
Software\AWSoftware\EAC\StartUp Options ActualDriveAdapter Software\AWSoftware\EAC\ StartUp Options ActualDriveID ActualDriveLUN ActualCodec ActualPath ProfilesPath ComparePath ProcessPath RecordPath UseProfile UseLanguage ColumnsWidth WindowPosition WindowPositionComplete WritePositionComplete WAVWindowPosition ShowHintWindow EasyGUI OptionsTabPositions StandardWriter Drive Options Drive Options\ GapDetectionAccuracy GapDetectionMode SampleOffset CombinedSampleOffset UseCombinedSampleOffset UseC2Correction SpeedSelection EmulateCache CDTextCapable UseAccurateRip NoBCDData ExtractionMode ExtractionCommandSet SpeedReduction SwapEndians SwapChannel SpinUpDrive OverReadLeadOut SecureMode WriteOffset WriteEject WriteSpeed WriteMode WriteOptions CloseMethod Extraction Options Normalize NormalizeToLevel NormalizeLowerBound NormalizeUpperBound UseNativeSCSIInterface UseASAPISCSIInterface IncludeGaps BeepWhenDone EjectWhenDone PowerDownWhenDone ResetOnly CDTextUpper CDTextIncludeArtist UseCDRDAO AskOverwrite LockDrive DirectoryUse DirectorySpecification CheckReadCommandD8 CheckDensity CheckReadCommandD4 UseSilenceForCRC RemoveSilence Add2SecondGap AddCDTextToCUESheet SyncTrackJunctions CorrectDialogBug CoolDown CoolDownAfterMinutes CoolDownLength TimeDisplayUsingFrames OpenCDInfoDialog RetrieveCDDBOnUnknownCD DetectUPC UseRawCDPlayMethod NumberReads FileNamingConvention VariousFileNamingConvention UseVariousFileNamingConvention FileNameReplaceSpaces DisableCDAutostart ShowExtractionStatus FillUpMissingSamples ExtractionPriority GapsHandlingDefault CatalogLength CatalogFadeLength CatalogStartPos CatalogFadeInLength SkipOnError SkipAfterTime SkipTimeLimit WriteM3U WriteExtendedM3U AutoSaveStatus DisableCopyProtection BackgroundExternalCompression NoCompressionWindow DeleteFileOnCDCopy AskBeforeWriteOnCDCopy ID WaitForExternalCompressors Internet Options ProxyUserName ProxyUserPassword EMailUserName EMailHostName LyricsServer ProxyServer ActualHostName ProxyPort UseProxy UseProxyAuthentification UseLocalCDDB UseWindowsLocalCDDBFormat LocalCDDBPath DatabaseExportLine AskForSubmission RetryDifferentServer Internet Options\Hosts Internet Options\Hosts\ WaveEditor Options CreateProfile EnableUndo ScrollWave CompareMoreExact CreateNoiseFile DisplayNoLevelMeter DoubleChannelOnPlayback LowerGlitchBound EqualizerValues CorrectSpectralSelection MixStartValue MixEndValue MixLocking ValueAxisType TimeAxisType dBMinDisplay AnalyseFFTSize WindowFunction LogarithmicDisplay NoiseReductionAttenuation NoiseReductionThreshold LoopRecordLength FreeMemoryBeforeLoopRecording FadeStartValue FadeEndValue PopSensitivity PopLength ReverbDelay ReverbAmplify EchoDelay EchoAmplify PhaseDelay PhaseAmplify FlangeDelay FlangePeriod FlangeAmplify FadeLogarithmic UseMemoryProcessing UseUndo UndoPath TempPath Compression Options InternalFileExtension InternalAddNoHeader ExternalEncoderProgram ExternalEncoderOptions ExternalEncodeRate ExternalEncoderType ExternalEncoderID3Tag UseExternalEncoder ExternalEncoderHQ ExternalEncoderDeleteSource ExternalEncoderCreateCRC ExternalEncoderCheckReturnCode ExternalEncoderExtension UseDecompressionOffset DecompressionOffset ID3FileNamingConvention ID3CommentFieldText ID3CommentFieldType ID3FilenameReplaceSpaces UseID3V11 LAMEAddCRC LAMEWriteVBRHeader LAMEMaxVBR LAMEVBRQuality LAMEQuality LAMEOutputMode LAMEABRMode GogoUsePsycho GogoDisableFilter GogoNumberCPU GogoVBRQuality GogoEmphasis GogoOutputMode UseID3V2 UseTracknumberTotal V2.4.0 SleepCompressionQueue ID3V2Padding UseLAMEDecoder CoolMP3Option NumEncodingThreads Compression Options\ CodecTag CodecFormat CodecHighCompression CodecAddNoHeader CodecFileExtension ActualVersion 0.99A2 InstallPath EACV0991 StartAfterCompression StartAfterExtraction StartAfterCompressionParam StartAfterExtractionParam \Hosts 0.90A5 EAC.CFG 47AB3DF2 Error Message EAC could not find a matching language file ! EAC Layout Files (*.elf) *.wav;*.mp3;*.aac;*.vqf *.cfg;*.cfd;*.cfe;*.cfw;*.cfc *.wav;*.mp3;*.wma;*.mp+;*.mpc;*.ape *.wav;*.mp3;*.mp+;*.mpc;*.ape scanbus blank --device SPTI: , -v 5 --blank-mode minimal --eject write --device SPTI: -n --swap --buffers 32 --overburn -v 5 --driver generic-mmc-raw:0x10 --driver generic-mmc-raw --driver generic-mmc:0x10 --simulate --eject --speed --multi " " 00:00.00 / - x:xx:xx xxx.xx -xx:xx.xx xx:xx PLEXTOR TEAC CD-R TEAC MITSUMI YAMAHA SONY HP LG LITE RICOH $@ à@-    K w î Ê ” (# äW ȯ X °     
   
  #14000 #8100 #8199 #13900 / .wav " #13200 cue #12100 #13400 #12500 #12300 #12600 VARIOUS Various Artists --:--.-- xx:xx.xx EAC Layout Files (*.elf) *.wav;*.mp3;*.mp+;*.mpc;*.ape IpxSocketI p x S o c k e t SapIdS a p I d TcpPortT c p P o r t UdpPortU d p P o r t ObjectIdO b j e c t I d ToolTip #3800 #14700 SOFTWARE\Classes\AudioCD\shell .Default\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer NoDriveTypeAutoRun \dummy.txt dummy.txt \ exe (%N) %T - %A Various #5000 #8200 #13100 #13000 IpxSocketI p x S o c k e t SapIdS a p I d TcpPortT c p P o r t UdpPortU d p P o r t ObjectIdO b j e c t I d x:xx:xx.xx h:m:s.f x:xx:xx.xx h:m:s.m x:xx:xx.xx h:m:s.f x:xx:xx.xx h:m:s.m / #8300 #9400 #4700 Various # (*. ) (*.wav) (*.wma) \ Code Special CD Code Extract WAV + Write DB xxxxx.xx -x:xx:xx.xx -xx:xx:xx.xx wav #7400 #10700 #9700 pB $ÀToolTip exe .wav #800 PSP Audio (*.toc) #12200 %T - %A cfg #12800 #13600 -NOSTOPCOMMAND -NOTESTUNIT -NOSPEEDSEL -NOREADSUB -HTTP1.1 -NOCDTEXT -NOMULTISESSION -EXTRACTMP3 -EXTRACTWAV -NOSHOWBUFFER -FORCERAW -FORCEPLEXTOR -FORCETEAC -FORCESONY -USEFUA -SLOWCONNECT -MTRH -MZEE -CLOSE -NOCORRECTION -DRIVE IpxSocketI p x S o c k e t SapIdS a p I d TcpPortT c p P o r t UdpPortU d p P o r t ObjectIdO b j e c t I d Various #3600 .wav .log #800 #1200 #8300 #14800 - \ - .m3u #EXTM3U #EXTINF: , .wma .ape .mp3 . CD-Archivnummer enthält ungültige Zeichen ! nnErneut eingeben ? Fehlermeldung Länge der CD-Archivnummer muß 7 Zeichen betragen ! nnErneut eingeben ? #17000 PLEXTOR (*) FLAC\FLAC.EXE SOFTWARE\Microsoft\Windows Media\Encoder Version LAME.EXE * #17100 exe 03. ABBA - Dancing Queen 03 ABBA - Dancing Queen 03. Dancing Queen - ABBA 03 Dancing Queen - ABBA 03. Dancing Queen 03 Dancing Queen ABBA - Dancing Queen ABBA 03. Dancing Queen ABBA 03 Dancing Queen ABBA - 03. Dancing Queen ABBA - 03 - Dancing Queen ABBA - Number Ones - 03. Dancing Queen ABBA - Number Ones - 03 - Dancing Queen ABBA - Number Ones - Dancing Queen Number Ones - 03. Dancing Queen Number Ones - 03 Dancing Queen 03. ABBA - Dancing Queen (Number Ones) 03 ABBA - Dancing Queen (Number Ones) 03. ABBA - Number Ones - Dancing Queen 03 ABBA - Number Ones - Dancing Queen ABBA \ 03. Dancing Queen ABBA \ 03 Dancing Queen ABBA \ 03. ABBA - Dancing Queen ABBA \ 03 ABBA - Dancing Queen ABBA \ Number Ones \ 03. Dancing Queen ABBA \ Number Ones \ 03 Dancing Queen ABBA \ Number Ones \ 03. ABBA - Dancing Queen ABBA \ Number Ones \ 03 ABBA - Dancing Queen Number Ones \ 03. Dancing Queen Number Ones \ 03 Dancing Queen Number Ones \ 03. ABBA - Dancing Queen Number Ones \ 03 ABBA - Dancing Queen ABBA - Number Ones \ 03 Dancing Queen - ABBA [...]


That is one long codebox... Whatever
greynol
Not sure why you're going through the trouble, but here...
http://www.digital-inn.de/exact-audio-copy...ne-options.html
Realityfreak
QUOTE(greynol @ Jul 13 2008, 02:50) *

Not sure why you're going through the trouble, but here...
http://www.digital-inn.de/exact-audio-copy...ne-options.html


1. I like beeing complicated smile.gif
2. It wasn't my goal to find the known commands, but to prove the existence of the -usefua command in EAC using the REACT.ini as a program launcher. I could confirm , that REACT accepts the -usefua switch, but I can't read more out of the dumpfile. So I can't tell, if EAC is actually using it or if it just somehow incorporated the commandline out of the REACT.ini file.

But still: I like beeing complicated. biggrin.gif
greynol
Doesn't REACT just launch EAC according to what's in the .ini file?

It seems there's evidence around to suggest that it does.
Realityfreak
QUOTE(greynol @ Jul 13 2008, 03:06) *

Doesn't REACT just launch EAC according to what's in the .ini file?

It seems there's evidence around to suggest that it does.


Oh well... At least I had some fun trying to invent the wheel all over again! But at least I came to the same conclusion.

An other question though: what are programs or services known to cause problems with FUA (such as SPTD)? Does such a list exist?

Thanks
greynol
I've seen it suggested that certain chipset drivers may interfere, but the only thing I know for sure is older versions of SPTD. Just rip a scratched CD and check to see that EAC reports read errors as shown in that link.

This is all you need to do.
Realityfreak
QUOTE(greynol @ Jul 13 2008, 03:17) *

I've seen it suggested that certain chipset drivers may interfere, but the only thing I know for sure is older versions of SPTD. Just rip a scratched CD and check to see that EAC reports read errors as shown in that link.

This is all you need to do.


Thanks for your support, I'll give it a try. But for now I'm half dead. I'll have to continue tomorrow (today actually biggrin.gif ) after a bit of rest.

Rf
Akkurat
QUOTE(greynol @ Jul 13 2008, 04:06) *
Doesn't REACT just launch EAC according to what's in the .ini file?

Yes it does.
Realityfreak
OK... I had this idea to downgrade back to Synthetic Soul's last mod and see what happens. That somehow solved the problem (well: I just replaced the REACT.exe and left the rest of Akkurat's files intact [don't know, if anything changed there from ssb16p to akku.b02]).

Somehow strange... huh.gif

Regards
Akkurat
QUOTE(Realityfreak @ Jul 15 2008, 23:32) *
OK... I had this idea to downgrade back to Synthetic Soul's last mod and see what happens. That somehow solved the problem (well: I just replaced the REACT.exe and left the rest of Akkurat's files intact [don't know, if anything changed there from ssb16p to akku.b02]).

Somehow strange... huh.gif

Well, here's the thing: the SS version did work for almost everyone (the original code for that part was by Tycho BTW.), almost every time, that's why I changed the code. You now may have couple of good results, BUT sometimes you could get wrong image filenames. That's why I see that it would be wise to track down this issue once and for all. Last January I was doing just that but my test user "vanished". sad.gif I hope you're not going to do that.

P.S. Did you try the new test version I sent you couple of days ago? I haven't heard anything from you since then.

EDIT: My "January test user" had this problem occur only sometimes before I changed the code. After that he had the problem every time but unfortunately he disappeared after that and I really would have liked to solve the problem. It's your choice to use the old version if you like of course but I'm saying that there's some problem with that "old code" and you could encounter it in the future, i.e. you get wrong image filenames sometimes. I see that my changes is for the better (in a testing sense) because with my code, you (couple of you) get the problem every time. It's easier to solve when it's consistent.. it's really hard to debug/test/solve if it's happening "sometimes". And like I said in the other thread, I really would like to understand why these problems/"anomalies" happen and "really" solve them than "blindly" apply a patch with my fingers crossed. That's dedication to maintain a good program I might say...? I don't know, that's just how I work..
Realityfreak
QUOTE
P.S. Did you try the new test version I sent you couple of days ago? I haven't heard anything from you since then.


No, I didn't forget about that file you sent me and I will carry on testing it. It's just, that my antivirus is driving me nuts. I logged on to an administrator account, excluded the ZIP file, the whole drive it's located on and even the file extentions *.exe and *.zip, but the Backdoor.Generic.56393 warning just won't disappear. Even after killing all scanningprocesses. The extracted file automaticly gets deleted. My only option now, is to wait until the AV doesn't recognize the file as threat anymore.

(As I already pointed out, I'm currently not willing to deinstall my antivirus, so this could take some time. Softwin received a copy of REACT.exe and now I hope that they'll examin it as soon as possible. I'm sorry for the delay, since I can imagine that you also want to close this case as soon as possible)

Regards

Rf
Akkurat
QUOTE(Realityfreak @ Jul 16 2008, 00:05) *
No, I didn't forget about that file you sent me and I will carry on testing it. It's just, that my antivirus is driving me nuts. I logged on to an administrator account, excluded the ZIP file, the whole drive it's located on and even the file extentions *.exe and *.zip, but the Backdoor.Generic.56393 warning just won't disappear. Even after killing all scanningprocesses. The extracted file automaticly gets deleted. My only option now, is to wait until the AV doesn't recognize the file as threat anymore.

(As I already pointed out, I'm currently not willing to deinstall my antivirus, so this could take some time. Softwin recieved a copy of REACT.exe and now I hope that they'll examin it as soon as possible. I'm sorry for the delay, since I can imagine that you also want to close this case as soon as possible)

No, don't uninstall your av! But I'm little surprised the way your av works.. maybe BitDefender is not that good. wink.gif

I have sent the false positive REACT.exe (along with source codes and VirusTotal.com results) to 6(!) av-vendors already, Ikarus did remove it very quickly, F-Secure has excluded it BUT has not yet rolled out the new detection, VBA32 promised to remove it quickly, maybe they did but now it's detected again as other threat (nice, I've to write to them again).. and the others (BitDefender, ClamAV, Norman) have serious "remove FP's quickly" problems.

Yes I really want to solve this! smile.gif And like I said, no hurry, it's just that your absence from email and the latest "downgrade message" made me a bit suspicious of what's going on... sorry.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.