QUOTE
Originally posted by YinYang
Thanks a lot.
Bug? It seems I cannot use it on specified files in a directory using wildcards.
using a line like
..vorbisgain.exe *gimme*.ogg
(in a directory containing the file \"Rolling Stones - Gimme Shelter.ogg\"amongst others)
doesn't produce any output. It's like Vorbisgain doesn't find the file.
Argh. Stupid bug (for Windows, that is): the pattern matching is case sensitive... Garf, can you fix that? Change
if ((*pattern == *text) || (*pattern == '?'))
in misc.c/match() to
#ifdef WIN32
if ((toupper(*pattern) == toupper(*text))
|| (*pattern == '?'))
#else
if ((*pattern == *text) || (*pattern == '?'))
#endif
Haven't tested it, but should work.
Note: qoutes around patterns (as Garf mentioned) is only needed on Unix (or if you use some Unix-like shell on Win32 - if there is such a beast

).
QUOTE
Another question. If no switches are used, does it use radiogain by default?
Rather, it will only calculate the radio gain. Any audiophile gain tag will remain unchanged.
QUOTE
the --fast option: How about it recognising only RG_ tags and not tags in general. Then you can use it on already tagged (but not replaygained) files too? In my experience it seems also to skip tagged files that do not have RG_ tags.
As Garf said, it's supposed to only skip if all "requested" RG_ tags are present.