View Single Post
  #4  
Old 2005-03-17, 07:49 PM
uhclem
 
Re: Foobar conversion or shntool conversion?

Convert from SHN to sector aligned FLAC files all in one step with shntool.

I use a simple batch file to create the fingerprint. It's simple because you just drag 'n' drop the folder containing your new flacs onto the batch file and voila it produces a fingerprint file for you in the folder. Here's the batch file I use:

@echo off
%~d1 & cd "%~1"
for %%F in (*.flac) do metaflac --show-md5sum --with-filename "%%F" >> "%~n1-ffp.txt"


Yeah you might want to remove the '-fixed.' part from the files first, but it doesn't hurt to leave that there as a reminder that they were fixed.

I know many ppl here think you need to bit verify your flac files against your original shn files but that's really not necessary.

Last edited by uhclem; 2005-03-17 at 07:56 PM.
Reply With Quote Reply with Nested Quotes