search for: 7e8dba1a

Displaying 2 results from an estimated 2 matches for "7e8dba1a".

2007 Sep 27
1
re-encode tool win32
...___________________________________________________ Discover the new Windows Vista http://search.msn.com/results.aspx?q=windows+vista&mkt=en-US&form=QBRE -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/flac/attachments/20070927/7e8dba1a/attachment.htm
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