With
REACT v0.980 you can automate encoding wavpack images (or any other image types) with both APEv2 REPLAYGAIN tags and embedded cuesheets with RG comment tags. I've changed some ini-config sections again, and added a wavpack section. If you hit Alt-F2, you'll see:
CODE
[wavpack-image]
DESCRIPTION=Wavegain and create wavpack image with embedded cuesheet and replaygain APEv2 tags
ImageExt=wv
CuesheetExt=wv.cue
WaveGainAnalysis=1
WaveGainExtraOpt=
1=>wavpack.exe -h -m -w "Cuesheet=@@cuesheet@" -w "Replaygain_Album_Gain=@gain@" -w "Replaygain_Album_Peak=@peak@" -w "Artist=@artist@" -w "Album=@album@" -w "Year=@year@" -w "Genre=@genre@" -w "Comment=@comment@" "@source@" "@image@"
2=>if errorlevel 1 pause
3=>del "@source@"
You may add '4=>del "@cuesheet@"' as it is already embedded in the image if you want. You only need to hit F11 and change the first parameter in 'Additional command line options:' to wavpack, and then hit F10 to create the wavpack image. It will embed a following cuesheet with REPLAYGAIN comments in it.
CODE
REM REPLAYGAIN_ALBUM_GAIN "-1.69 dB"
REM REPLAYGAIN_ALBUM_PEAK 0.933197
REM GENRE Blues
REM DATE 1973
REM DISCID 7B07DD0A
REM COMMENT "ExactAudioCopy v0.95b2"
PERFORMER "ZZ Top"
TITLE "Tres Hombres"
FILE "ZZ Top - Tres Homrbres.wv" WAVE
TRACK 01 AUDIO
TITLE "Waitin' for the Bus"
PERFORMER "ZZ Top"
INDEX 01 00:00:00
TRACK 02 AUDIO
TITLE "Jesus Just Left Chicago"
...