badbob wrote:
> I've got a load of old flac encodes, I want to convert these to latest
> 1.2.1, how do I highlight everything except 1.2.1 encodes in foobar?
> 
> Parameters are
> 
> -s --ignore-chunk-sizes -8 - -o %d
> and
> %artist%\%album%\%track% - %title%


I use a bash script, named "reflac":

#!/bin/bash
VERSION=$( metaflac --show-vendor "$1" | awk '{ print $3 }' );
if [ "${VERSION}" \< "1.1.4" ] ; then
         echo "Processing $1"
         flac --best -V --force --silent "$1"
else
         echo "Skipping $1"
fi

Wrap it in a shell script, like this:

find . -iname "*.flac" exec reflac {} \;

Leave it running overnight!

R.

_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/ripping

Reply via email to