Thanks for your response.
I made my flac files like this (EAC-->WAV-->FLAC(through EAC command line), i would then use fb2k to add replaygain and then touch up tags if need be) is this not considered "in the pipe"? I'm a little out of date on that term... (pipe = bitstream encoding?)
I tried to modify the code i read in a previous post in order to store the total_samples and md5_signature in a output file.
for /F "tokens=*" %I in ('dir /s /b *.flac') do metaflac.exe --with-filename "%I" --list --block-number=0 2>> error.txt
However, this returns a blank txt file, i've tried other variations with little success, and i think that even if it did work it would probably output all of the information in the STREAMINFO block, which would be alot to dig through. Is there a command to only focus on the total_samples and md5_signature portion just display them or to see if they are 0?
Or am I perhaps bending over backwards and should instead utilize a program to do this? Any suggestions on how to check these values would be greatly appreciated.
Thanks for your help!
Edit: Ok, i was able to come up with this
for /F "tokens=*" %I in ('dir /s /b *.flac') do metaflac.exe --with-filename "%I" --show-md5sum --show-total-samples 2>> error.txt
Now that narrowed the output to the sum and the total samples only, but the output file still won't list anything...
Edit2: Bingo!
for /F "tokens=*" %I in ('dir /s /b *.flac') do metaflac.exe --with-filename "%I" --show-md5sum --show-total-samples >> error.txt
This outputs a file with the filename listed twice with the md5 checksum first and then the total samples next.
So, if any of these values return "0", that means they failed during encoding, correct?
Thanks!