Thread: FLAC Frontend
View Single Post
  #31  
Old 2004-11-29, 01:59 PM
aaadbell aaadbell is offline
 
Join Date: Nov 2004
Location: USA
Re: FLAC Frontend

You can create a Flac fingerprint file named ffp.txt at the command line with the following command (assuming metaflac.exe is in your path).

FOR %f IN (*.flac) DO metaflac --show-md5sum --with-filename "%f" >> ffp.txt

If you put this in a batch file, the %f must become %%f in both occurrences.

If you leave out the --with-filename "%f", you get the fingerprints without the filenames.

I got this from the hydrogenaudio thread http://www.hydrogenaudio.org/forums/...howtopic=10773
Reply With Quote Reply with Nested Quotes