How do you save the encode/decode/test statistics generated by Flac to a text file? For example, the following won't work:
flac -t [input *.flac file(s)] > output.txt
I want to test thousands of flac files to make sure they aren't corrupted (about 10-15 of my files got messed up due to a hard disk problem). If I could run "flac -t" on all of them them and save the statistics to a text file, it would then be very easy to do a text search inside that output file to look for error codes and thus quickly determined which handful of files are problematic.
Ideas?
Thanks in advance.