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 2 Released (Read 1280348 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

REACT 2 Released

Reply #1100
I'll confess that I don't really know whether I want a cuesheet for the mp3s or not but, yes, that is what I was trying to create! I'm using EAC V0.99 prebeta 3 and REACT v2.0.ssb16n. Initially I see a cuesheet with the slightly suspicious name "album..cue" created in the extraction directory. (I say suspicious only because I have no idea what the "" means.) Then I get the error dialogs and if I let it continue then the cuesheet gets copied to the flac image directory with the name "artist - [year] album.cue". Nothing gets created for the mp3s.

Well this is most probably fixed in my not-yet-...-maybe-never-released mod  which is supposed to continue from where the 2.0.ssb16n mod of REACT left. If you send me your email address in PM I could send you a version to test.

Also you have to amend the REACT-image.cfg file. The additional cuefiles are not copied to the MP3 directory by default. The cuefiles in the extraction directory are deleted after REACT finishes.

Find the :end_lame_tracks text in the REACT-image.cfg file and look two lines above and you should find the following line:
Code: [Select]
IF %have_cover%==1 COPY /Y "@cover@" "folder.jpg"

Add the following line below it:
Code: [Select]
IF EXIST "@albumfile@.[*].cue" COPY /Y "@albumfile@.[*].cue" .

NOTE! Don't forget the line ending dot!

But most probably you want the [mg] cuefile so you can change the above line just to copy that file.

REACT 2 Released

Reply #1101
the first is working right in foobar second is not. It seems that the INDEX 00 are wrong in the 2nd cuesheet. I don't know what happened to cause this? I didn't change anything when I ran REACT.

Code: [Select]
FILE "Steve Miller Band - Greatest Hits 1974-78.flac" WAVE
  TRACK 01 AUDIO
    TITLE "Swingtown"
    PERFORMER "Steve Miller Band"
    INDEX 01 00:00:00
  TRACK 02 AUDIO
    TITLE "Jungle Love"
    PERFORMER "Steve Miller Band"
    INDEX 00 05:19:24
    INDEX 01 03:29:10
  TRACK 03 AUDIO
    TITLE "Take The Money And Run"
    PERFORMER "Steve Miller Band"
    INDEX 00 08:29:19
    INDEX 01 06:38:35
I have never seen anything like that.  This is out of the scope of this thread.  I would create a new thread and post the cuesheet.  It is likely that it is an issue with your drive, or your EAC settings related to your drive.  Before creating a new thread it may be worth taking a look at the settings on the "Drive Options" > "Gap Detection" tab in EAC, and possibly also the "Drive" tab.

I also have a question about Albumart being embedded, I have no problem with it when I go on the internet. It get download into the temp dir and REACT does it thing. What I looking to do is use some of my pics I have on my computer,my pics are saved as "Artist - Album.jpg" but when Albumart put their pic into the temp dir they are called "Album.jpg". Can I edit REACT to use "Artist - Album.jpg"?
This is as expected.  It doesn't matter what the file is called at this point - you need to look at the config and change the name that the file is copied to.  Perhaps you should change:

Code: [Select]
IF %have_cover%==1 COPY /Y "@cover@" %dest%\"@basename@.jpg"

... to:
Code: [Select]
IF %have_cover%==1 COPY /Y "@cover@" %dest%\"$cdartist$ - $album$.jpg"
I'm on a horse.

REACT 2 Released

Reply #1102
the first is working right in foobar second is not. It seems that the INDEX 00 are wrong in the 2nd cuesheet. I don't know what happened to cause this? I didn't change anything when I ran REACT.
I have never seen anything like that.  This is out of the scope of this thread.  I would create a new thread and post the cuesheet.  It is likely that it is an issue with your drive, or your EAC settings related to your drive.  Before creating a new thread it may be worth taking a look at the settings on the "Drive Options" > "Gap Detection" tab in EAC, and possibly also the "Drive" tab.

I also have a question about Albumart being embedded, I have no problem with it when I go on the internet. It get download into the temp dir and REACT does it thing. What I looking to do is use some of my pics I have on my computer,my pics are saved as "Artist - Album.jpg" but when Albumart put their pic into the temp dir they are called "Album.jpg". Can I edit REACT to use "Artist - Album.jpg"?
This is as expected.  It doesn't matter what the file is called at this point - you need to look at the config and change the name that the file is copied to.  Perhaps you should change:
Code: [Select]
IF %have_cover%==1 COPY /Y "@cover@" %dest%\"@basename@.jpg"
... to:
Code: [Select]
IF %have_cover%==1 COPY /Y "@cover@" %dest%\"$cdartist$ - $album$.jpg"



When I update EAC something must have got change, it working fine now.

I still got questions about albumart embedded using REACT.  Looking at the directions for "editing the CFG file"  "@cover@  The path to the cover/album art picture file, downloaded with CoverDownloader".

When I run Albumart downloader, I must save the file as Album.jpg to the temp dir.  What I want to do is put the file in the temp dir as Artist - Album.  Seems like @cover@ can only be Album.jpg.  Is what I asking for possible?

REACT 2 Released

Reply #1103
I still got questions about albumart embedded using REACT.  Looking at the directions for "editing the CFG file"  "@cover@  The path to the cover/album art picture file, downloaded with CoverDownloader".

When I run Albumart downloader, I must save the file as Album.jpg to the temp dir.  What I want to do is put the file in the temp dir as Artist - Album.  Seems like @cover@ can only be Album.jpg.  Is what I asking for possible?
Why do you need it to be called"<artist> - <album>.jpg", when you have the use of the REN, MOVE and COPY commands in your config?

The name in the temp folder is irrelevant - it's how you choose to name it when you rename, move or copy it that is important.

The example I gave above will copy the file from the temp directory, to your FLAC folder directory, and rename it "<artist> - <album>.jpg".  That's all you need really.
I'm on a horse.

REACT 2 Released

Reply #1104
I still got questions about albumart embedded using REACT.  Looking at the directions for "editing the CFG file"  "@cover@  The path to the cover/album art picture file, downloaded with CoverDownloader".

When I run Albumart downloader, I must save the file as Album.jpg to the temp dir.  What I want to do is put the file in the temp dir as Artist - Album.  Seems like @cover@ can only be Album.jpg.  Is what I asking for possible?
Why do you need it to be called"<artist> - <album>.jpg", when you have the use of the REN, MOVE and COPY commands in your config?

The name in the temp folder is irrelevant - it's how you choose to name it when you rename, move or copy it that is important.

The example I gave above will copy the file from the temp directory, to your FLAC folder directory, and rename it "<artist> - <album>.jpg".  That's all you need really.



Sometimes I want to use my pics I have instead of using the pics AlbumArt Downloader found.  So I was going to copy my pic to the temp dir (without renaming) and then run REACT.  I probably missing something or maybe there a different way of doing what I trying to do.  If not I guess I can rename my pic, if I must.

REACT 2 Released

Reply #1105

I still got questions about albumart embedded using REACT.  Looking at the directions for "editing the CFG file"  "@cover@  The path to the cover/album art picture file, downloaded with CoverDownloader".

When I run Albumart downloader, I must save the file as Album.jpg to the temp dir.  What I want to do is put the file in the temp dir as Artist - Album.  Seems like @cover@ can only be Album.jpg.  Is what I asking for possible?
Why do you need it to be called"<artist> - <album>.jpg", when you have the use of the REN, MOVE and COPY commands in your config?

The name in the temp folder is irrelevant - it's how you choose to name it when you rename, move or copy it that is important.

The example I gave above will copy the file from the temp directory, to your FLAC folder directory, and rename it "<artist> - <album>.jpg".  That's all you need really.



Sometimes I want to use my pics I have instead of using the pics AlbumArt Downloader found.  So I was going to copy my pic to the temp dir (without renaming) and then run REACT.  I probably missing something or maybe there a different way of doing what I trying to do.  If not I guess I can rename my pic, if I must.



What I do is set a path in the ini to my folder that holds the local album art.

Code: [Select]
CoverDownloaderLocalPath=D:\My Documents\My Pictures\Album Art\$artist$\**\*.jpg


The above will work if you have folder structure of artist\album name\*.jpg

or

Code: [Select]
CoverDownloaderLocalPath=D:\My Documents\My Pictures\Album Art\$artist$\*.jpg


This will look for artist\*.jpg

I  don't use the art downloader that comes with REACT tho. I use AlbumArtDownloader XUI

When the albumart program comes up it will search the net and my local art or just select to search the local art only. 

I also specified in AlbumArt XUI in the options for Local Files the same that I added in the ini for the coverdownloaderlocalpath to make sure everything works.

This is what I do when I don't have the albumart in my local files. Once I select it from the downloader and gets placed in the Temp Dir I copy the the ablum art to my local files for future use.

Hope that hepls.

Edit: If you decide to use AlbumArt XUI this needs to be added to the ini:

Code: [Select]
CoverDownloaderXUI=1

REACT 2 Released

Reply #1106
Sometimes I want to use my pics I have instead of using the pics AlbumArt Downloader found.  So I was going to copy my pic to the temp dir (without renaming) and then run REACT.  I probably missing something or maybe there a different way of doing what I trying to do.  If not I guess I can rename my pic, if I must.
Ah, I see.  Yes, that is a good reason.

Thankfully m_l has done an excellent job of explaining how that may be achieved.  It may be a bit around the houses, but IIRC you can speed things up by setting Album Art XUI to only check your local path for images.

You may find this post (suggestions for the CoverDownloaderLocalPath variable) and this post (explanation of the relevant INI variables) useful in addition, although I think m_l has covered all the important bits very well indeed.
I'm on a horse.

REACT 2 Released

Reply #1107
May I direct those interested in developing REACT to the thread "REACT: Notes for developers, or anyone writing an interim application", in which I have documented some of the issues, anomalies, and important bits and pieces that I could scrape from my brain on 3rd December 2007.

Akkurat and nago: I'm sure that you can make some useful additions.  I expect that you are aware of everything that I have documented so far.

The publishing of these notes has no real significance.  I just remembered them today and thought that I should publish them here before I forgot them completely.  It's good to get them out of my brain and into the open.
I'm on a horse.

REACT 2 Released

Reply #1108
Synthetic Soul: Thank you so much for publishing that. I will absolutely make sure to read it!

I do have something in the pipes still, but there have been some bugs reported I am unable to fix for now, and with my spring semester starting, it may be a while before I hammer them out.

Oh well. life is life!

REACT 2 Released

Reply #1109
Hello Everyone,
First, big thanks to evereone for work & support of this tool
Second: I once reported a problem with the "additional metadata" dialogue not working here.
The problem was solved, see the edit in the original. It was connected with ATI hijacking the Alt-F5 as a shortcut.
Third: Apologies for asking the questions that might have been answered, but i still have problems with replaygain/wavegain configuration.
Code: [Select]
[Settings]
Version=2.0.ssb16l
ImageExt=flac
ImageNaming=$artist$ - $album$
ImageHotKey={F10}
TracksHotKey={F4}
TracksHotVal=+{F5}
VA=Various Artists
CreateAllCuesheets=0
RunCoverDownloader=1
CoverDownloader=C:\Program Files\REACT2\coverdownloader\albumart.exe
CoverDownloaderXUI=0
CoverDownloaderLocalPath=
EAC=C:\Program Files\Exact Audio Copy\EAC.exe
Tools=C:\Program Files\REACT2\tools
MinimizeCompressionWindow=0
ProcessPriority=1
Sla_Bks_Col_Qst_Bar_Quo_Ast_Lt_Gt=-|-|-||!|'|#|[|]
Test=0

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

[UserOutputNames]
OutRoot=c:\media\EAC
ImageDir_Flac=@OutRoot@\FLAC-images\$cdartist$\ $album$
ImageDir_Wavpack=@OutRoot@\WV-images\$cdartist$
ImageDir_MP3=@OutRoot@\MP3-images\$cdartist$
ImageDir_Tak=@OutRoot@\TAK-images\$cdartist$
TrackDir_Flac=@OutRoot@\FLAC\$cdartist$\[$year$] $album$
TrackDir_Wavpack=@OutRoot@\WV\$cdartist$\[$year$] $album$
TrackDir_MP3=@OutRoot@\MP3\$cdartist$\$album$
TrackDir_AAC=@OutRoot@\AAC\$cdartist$\[$year$] $album$
TrackDir_OGG=@OutRoot@\OGG\$cdartist$\[$year$] $album$
TrackDir_Tak=@OutRoot@\TAK\$cdartist$\[$year$] $album$
TrackName_SA=$track$ - $title$
TrackName_VA=$track$ - $title$ [$artist$]
TrackName_SA_acdir=$n - $~t
TrackName_VA_acdir=$n - $~t [$~a]

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


[DefaultMetaData]
discnumber=1
totaldiscs=1
discname=

First thing: When I look at "edit replaygain values" of flacs in fb2k, there's no data whatsoever. And looking at the script's output, I do not see them being calculated.
Second: I'd like to have the replaygian album values applied to mp3s.
Is this correct?
Code: [Select]
ReplayGain=1
ApplyAlbumGain=1
AdjustAlbumGain_dB=+3.0
Thanks for help!
IH

REACT 2 Released

Reply #1110
I have a few questions about REACT2 and various artist albums.  This is my naming scheme and directory settings:

VA=Various Artists
ImageNaming=$album$ [$year$]
ImageDir_Tak=@OutRoot@\TAK-images\$cdartist$\$album$ [$year$]

So when I ripped my first VA CD (Dr. Demento - 20th Anniversary Collection, don't scoff, it has five stars at allmusic.com!  ) I'd expect it to save in the folder:

C:\My Documents\My Music\EAC\TAK-images\Various Artists\Dr. Demento 20th Anniversary Collection (Disc 2) [1991]

but it doesn't.  Instead it saves in the folder:

C:\My Documents\My Music\EAC\TAK-images\The Firm\Dr. Demento 20th Anniversary Collection (Disc 2) [1991]

("The Firm" is the name of the track artists for track 2, the classic tune  "Star Trekkin'"!  )

Also, in the cue sheet, the CD artist is listed as:

PERFORMER "Various"

instead of the expected:

PERFORMER "Various Artists"

How can I fix this?

Consequently, I've never liked the various artist naming scheme because the individual tracks have their artists in the artist tag and that messes up the way the album shows up on most players if you like to listen to entire albums.  So I may ditch the whole thing.

But then my question becomes, how do I make sure the files save where I want them to with the artist tag "Various Artists."  EAC will not let me do that since if you type "Various Artists" in the artist field it checks the VA box and uses the alternate naming scheme! 

Sorry for the rant!

REACT 2 Released

Reply #1111
Sometimes I want to use my pics I have instead of using the pics AlbumArt Downloader found.  So I was going to copy my pic to the temp dir (without renaming) and then run REACT.  I probably missing something or maybe there a different way of doing what I trying to do.  If not I guess I can rename my pic, if I must.
Ah, I see.  Yes, that is a good reason.

Thankfully m_l has done an excellent job of explaining how that may be achieved.  It may be a bit around the houses, but IIRC you can speed things up by setting Album Art XUI to only check your local path for images.

You may find this post (suggestions for the CoverDownloaderLocalPath variable) and this post (explanation of the relevant INI variables) useful in addition, although I think m_l has covered all the important bits very well indeed.

Thanks You Synthetic Soul and m_l for helping.  I had a time fiquring it all out, but I got all working  happy ripping.

REACT 2 Released

Reply #1112
When I look at "edit replaygain values" of flacs in fb2k, there's no data whatsoever. And looking at the script's output, I do not see them being calculated.

Hmm.. I don't use foobar2000 but you could check the values from the file with metaflac.exe:
Code: [Select]
metaflac.exe --list "[filename].flac"

If the RG values are there, we can blame foobar2000 or FLAC encoder.

Second: I'd like to have the replaygian album values applied to mp3s.
Is this correct?
Code: [Select]
ReplayGain=1
ApplyAlbumGain=1
AdjustAlbumGain_dB=+3.0

As far as I know, yes. (I don't use applied RG values)

REACT 2 Released

Reply #1113
This is my naming scheme and directory settings:

VA=Various Artists
ImageNaming=$album$ [$year$]
ImageDir_Tak=@OutRoot@\TAK-images\$cdartist$\$album$ [$year$]

So when I ripped my first VA CD (Dr. Demento - 20th Anniversary Collection, I'd expect it to save in the folder:

C:\My Documents\My Music\EAC\TAK-images\Various Artists\Dr. Demento 20th Anniversary Collection (Disc 2) [1991]

but it doesn't.  Instead it saves in the folder:

C:\My Documents\My Music\EAC\TAK-images\The Firm\Dr. Demento 20th Anniversary Collection (Disc 2) [1991]

("The Firm" is the name of the track artists for track 2, the classic tune  "Star Trekkin'"!  )

I'm lost with this.. did you have the "Various Artists" checked in EAC? My setup works just fine and I don't find any problems in your settings you've listed here. Maybe you should try ripping with original cfg's and ini file...? I'm sorry I can't think of anything else at the moment.

EDIT3: What text the artist field in EAC window has when you uncheck the "VA" checkbox?

Also, in the cue sheet, the CD artist is listed as:

PERFORMER "Various"

instead of the expected:

PERFORMER "Various Artists"

How can I fix this?

This I can confirm. It's EACs doings. Is this really important? This could be changed with GSAR tool if you like.. although if it's really important I think I could fix this in my upcoming mod (w/ other fixes). Please all who know about the significance of this, comment. Thanks.

Just remembered this from REACT: Notes for developers, or anyone writing an interim application:
Quote
Various Artist Discs

EAC will treat any freedb entry with an artist name that begins with "Various" as a VA album, and check the "Various Artists" checkbox accordingly.

However, it will continue to use the full artist name from the freedb entry, whether it be "Various Artists", "Various", "Variously" or "Various Badgers".

Therefore, to determine whether a disc is VA you should not rely on the artist name being "Various Artists", or "Various" (which is what freedb suggest submitting users should use). These values will work 99% of the time, but not all the time.

NB: If the user unchecks the checkbox and re-checks it this is seen as a change to the DB and EAC will set the artist value to "Various".

Actually this is kind of hairy situation.. I just tried unchecking the "VA" in EAC and entered various artists string to the CD artist field. Started ripping and the EAC "VA" was checked again and CD artist field showed (greyed out) Various, BUT now the cuefile has this line: PERFORMER "various artists".

So, even if EAC shows (greyed out) Various, the cuefile PERFORMER line is filled with the "original" string.. or if getting the info from freedb as Synthetic Soul stated: "it will continue to use the full artist name from the freedb entry, whether it be "Various Artists", "Various", "Variously" or "Various Badgers".

Real question is that does it really matter that ONE line in cuefile is maybe not as it was configured in REACT.ini? Does this affect burning image/tracks from cuefile? Or something else? I know that I'm the kind of who finds devil in details but I'm ready to let this go if it doesn't cause problems.

EDIT1: Maybe it causes problems with image cuefiles played in foobar2000 (artist read & displayed from the cuefile and not from tags)??

EDIT2: It affects the log file also: the 5th line [artist] / [album].. but this is really trivial.

Consequently, I've never liked the various artist naming scheme because the individual tracks have their artists in the artist tag and that messes up the way the album shows up on most players if you like to listen to entire albums.  So I may ditch the whole thing.

But then my question becomes, how do I make sure the files save where I want them to with the artist tag "Various Artists."  EAC will not let me do that since if you type "Various Artists" in the artist field it checks the VA box and uses the alternate naming scheme!

REACT tags various albums with extra tag "album artist=@VA@" so that various albums are not messed up in players. I'm using Winamp and it's working great. I expect that foobar2000 supports this as well as other "major" players...?

EDIT4: Little correction: in image ripping there's no extra tag (artist tag is subsituted with album artist tag). Anyways, it's working.

REACT 2 Released

Reply #1114
Akkurat, you might want to know I've run into VA issues as well.

Currently, I have a tester helping me who when he checks the "VA" checkbox,
EAC passed %D (Normally cdartist) as "va" to react.

Instead of "Various", etc. It was "va"! Why? I have no idea! Maybe you can shed some light on it for me.


My tester said that if he unchecked the various box and rechecked it, EAC would send %D as "Various" correctly.

REACT 2 Released

Reply #1115
Ive been using EAC for years, and just started using iTunesEncode to create ALC files for my iPod and iTunes. I wanted to also create MP3s and just came across REACT.  After several hours of poking around, I've see a lot of discussion of using FLAC and using iTunesEncoder to create AAC files, but I have not found a discussion on creating Apple Lossless files.  Am I just missing it or is ALC not supported?

Thanks

REACT 2 Released

Reply #1116
Akkurat, you might want to know I've run into VA issues as well.

Currently, I have a tester helping me who when he checks the "VA" checkbox,
EAC passed %D (Normally cdartist) as "va" to react.

Instead of "Various", etc. It was "va"! Why? I have no idea! Maybe you can shed some light on it for me.

My tester said that if he unchecked the various box and rechecked it, EAC would send %D as "Various" correctly.

This is something you should ask from the EAC author. How the EAC gui functions with this "VA" checkbox and "artist" field is so stupid. Try inputting strings "v", "va", "var", "vari", "vario", "variou", etc. to artist field and try to check the "VA" checkbox... it's a nightmare how it "works". Pure evil design. Sometimes the checkbox can't be checked (if the artist field string consist of even the first letter from "various artists" string (w/o quotes of course). Insert "vare" (w/o quotes) into artist field and the checkbox can be checked.. BUT if you then rip the cd, the cuefile & logfile is written with "vare"... and sometimes not! (jesus christ what a mess) Sometimes when clicking the checkbox your inputted string to artist field is reverted back to some earlier version that EAC "accepted"... I don't know.. stupid stupid stupid.

So, at the moment if you want to make sure that the one line in cuefile and irrelevant line in the log is created like you want (this situation ONLY if the freedb consist an artist string that REACT detects as "VA", which is the case in 99% of the time as Synthetic Soul stated), you should uncheck the "VA" checkbox and insert whatever you want into the artist field and checking the "VA" checkbox... BUT if inserting "Various" or "Various Artists" (w/o quotes) EAC wont allow you to check the checkbox... just rip and EAC puts the checkbox checked. I don't know.. very strange.. I haven't tested this thoroughly.. maybe I wont.. I'm so full of other past and present problems with REACT that I have a very hard time to jump into this.. it could be counted to be more as an EAC problem than an REACT problem and fixing this in REACT could be hard.. or even impossible.

EDIT: my new avatar clearly shows how I feel about this subject.

EDIT2: "EAC passed %D (Normally cdartist)"??? Source code states that: "4  %d  temporary destination filename". Also cdartist? The source again: "5  %a  @artist@". Not cdartist! I can't see cdartist passed from EAC. Am I missing something?

REACT 2 Released

Reply #1117
sorry, made a mistake. you know what I mean, though.

Instead of "Various" where CDartist would be, EAC was passing literally the word "va".

REACT 2 Released

Reply #1118
sorry, made a mistake. you know what I mean, though.

Instead of "Various" where CDartist would be, EAC was passing literally the word "va".

Oh, ok, you meant just the first part of the %d. My first advice would be to uncheck the "VA" checkbox and see what the artist field contains after it isn't greyd out. What I understand currently, the greyed Various doesn't proof anything.

EDIT: Side note, can somebody help ChuckW? I don't know about ALC, AAC, etc.

REACT 2 Released

Reply #1119
Exact Audio Copy 0.99 prebeta 4 has been released. Here's a detailed changelog from EAC forum:
Code: [Select]
- The installer lets the user choose which components (e.g. FLAC or CDRDAO) he wants to install
- Replacement with newer Accurate Rip DLL, FLAC Executable and the WMA Encoder Script
- Added two more languages to the installer
- Fixed the AccurateRip log info, where something is exactly 10
- Fixed a crash on detecting gaps for silence on mixed mode CDs
- Fixed the wrong export of the flag %F of the entire database to DB Text
- Probably something else

I tested it and it seems to work just fine with current REACT.. which is expected as the changes were quite small.

Also AlbumArtDownloaderXUI-0.12 has been released if somebody is interested.

I found a bug/problem with AlbumArtDownloaderXUI (old versions too); the GUI freezes when trying to find a cover image to "Led Zeppelin - II" album. The "II" is the culprit. Changing that to "I", "III" or "IIII" AlbumArtDownloaderXUI works just fine. I'm going to inform the authors... I just wanted to let you know this in case you have the seemingly not so popular Zeppelin album. Maybe the the second album is so good that the program gets confused and goes tripping.

REACT 2 Released

Reply #1120
[quote name='Akkurat' date='Feb 2 2008, 10:12' post='545178']
[quote name='nago' post='545177' date='Feb 2 2008, 19:58']
EDIT: Side note, can somebody help ChuckW? I don't know about ALC, AAC, etc.
[/quote]

Thanks!

 

REACT 2 Released

Reply #1121

EDIT: Side note, can somebody help ChuckW? I don't know about ALC, AAC, etc.

Thanks!



Oh, sorry ChuckW. This thread is a big mess and I frequently miss posts.

I am not sure if iTunesEncode.exe has the ability to support ALAC...

According to the iTunesEncode program:

Quote
-e EncoderName  Lets you specify the encoder iTunes will use.
                  Choose from "AAC Encoder", "WAV Encoder",
                  "MP3 Encoder", "AIFF Encoder",
                  or "Lossless Encoder".
                  (Default is "AAC Encoder".)


So try changing the -e "AAC Encoder" portion of the command line in tracks.cfg or images.cfg to -e "Lossless Encoder".

You should also probably change the references to .m4a to .alac (is it alac?)

REACT 2 Released

Reply #1122
Exact Audio Copy 0.99 prebeta 4 has been released. Here's a detailed changelog from EAC forum:
Code: [Select]
- The installer lets the user choose which components (e.g. FLAC or CDRDAO) he wants to install
- Replacement with newer Accurate Rip DLL, FLAC Executable and the WMA Encoder Script
- Added two more languages to the installer
- Fixed the AccurateRip log info, where something is exactly 10
- Fixed a crash on detecting gaps for silence on mixed mode CDs
- Fixed the wrong export of the flag %F of the entire database to DB Text
- Probably something else

I tested it and it seems to work just fine with current REACT.. which is expected as the changes were quite small.

Also AlbumArtDownloaderXUI-0.12 has been released if somebody is interested.

I found a bug/problem with AlbumArtDownloaderXUI (old versions too); the GUI freezes when trying to find a cover image to "Led Zeppelin - II" album. The "II" is the culprit. Changing that to "I", "III" or "IIII" AlbumArtDownloaderXUI works just fine. I'm going to inform the authors... I just wanted to let you know this in case you have the seemingly not so popular Zeppelin album. Maybe the the second album is so good that the program gets confused and goes tripping.



Thank You for the news:)

For those that want to try it:AlbumArtDownloaderXUI-0.12

I'm not sure if the new EAC comes with the latest AccurateRip. You can get the latest here: AccurateRip

I have being using the new EAC 0.99 prebeta 4  since it came out with no problems. Just tried the new AlbumArtXUI

REACT 2 Released

Reply #1123
I haven't actually switched to the new XUI version yet (for REACT) since it has such a slow startup time. I wonder if that's improved with the new release?

also, the new accuraterip version... Isn't AR 'built in' to EAC now? do we even have the option of replacing or upgrading this component ourselves?

REACT 2 Released

Reply #1124
I haven't actually switched to the new XUI version yet (for REACT) since it has such a slow startup time. I wonder if that's improved with the new release?


I have only used once so far seems a little faster.

Quote
also, the new accuraterip version... Isn't AR 'built in' to EAC now? do we even have the option of replacing or upgrading this component ourselves?


All I did is replace the AccurateRip.dll that's in the EAC folder and it's working fine