QUOTE(Hollunder @ May 14 2007, 05:28)

Hey, I'm just ripping all my CDs and while doing so I listened to some of them.
Well, it looks like some of them have errors because the player throws an error in the middle of the file.
I would like to know if there is an easy way to test a whole directory of flac files for errors.
CODE
flac -t *.flac
should work if you have the latest flac installed. Just cd to the directory you want to check first. If you have a directory tree try using
CODE
find . -name "*.flac" -execdir flac -t {} \;
from the top of directory hierarchy instead.