How can I batch convert flac files to wav?
The default flac distribution include a binary called flac(.exe)
. You can decompress flac files with it using the -d option.
Just use the cmd shell from the folder with .flac files:
FOR %f IN (*.flac) DO "C:\Program Files (x86)\FLAC\flac.exe" -d "%f"