This is a little script I use for batch converting ape files in a folder into flac.
#!/bin/bashfor f in *.apedo mac "$f" "${f%.*ape}.wav" -d && flac --best "${f%.*ape}.wav" && rm "${f%.*ape}.wav"done
Post a Comment
No comments:
Post a Comment