CODE
metaflac --add-replay-gain *.flac
*.flac: ERROR: reading metadata, status = "FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE"
So I've tried to use some DOS scripting (The good ol' dayz) to make up for that and I ended up with something like:
CODE
FOR /r %I IN (*.flac) DO metaflac --add-replay-gain "%~fI"
and in most cases it works, but on many files it keeps adding replay gain over and over. IE:
CODE
D:\>FOR /r %I IN (*.flac) DO metaflac --add-replay-gain "%~fI"
D:\>metaflac --add-replay-gain "D:\90's\Agra\Rebirth.flac"
D:\>metaflac --add-replay-gain "D:\90's\Agra\Rebirth.flac"
D:\>metaflac --add-replay-gain "D:\90's\Agra\Rebirth.flac"
D:\>metaflac --add-replay-gain "D:\90's\Agra\Rebirth.flac"
D:\>metaflac --add-replay-gain "D:\90's\Agra\Rebirth.flac"
It doesn't happen if I change 'add-replay-gain' with 'list' so I think it has got something to do with the dashes in the command line options.
Does anyone have any idea what causes this?
Will there be support for wildcards in the upcoming flac windows binaries?
BTW my PC uses Windows XP (AKA Fisher-Price OS).
Thx
PS. Sorry for my bad english, I haven't practiced in ages...