Thread: FLAC Frontend
View Single Post
  #50  
Old 2004-12-01, 07:47 PM
crazee_canuck crazee_canuck is offline
 
Join Date: Dec 2004
Re: FLAC Frontend

Quote:
Originally Posted by aaadbell
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
..and in Linux:
Code:
for I in *.flac; do metaflac --show-md5sum --with-filename "$I" >> ffp.txt; done
Reply With Quote Reply with Nested Quotes