Displaying 1 result from an estimated 1 matches for "d8b1c9fc".
2007 Sep 27
4
re-encode tool win32
Under linux/bash, it would be something like....
cd /MusicDirectory
find . -type f -name "*.flac" -exec sh -c 'flac -t {} && flac -8V {}' \;
Or to simplify and not test each file before re-encode....
find . -type f -name "*.flac" -exec flac -8 {} \; -print
Can someone translate this into NTBatch? Basically, recursive "dir" *.flac files as a