Created
November 24, 2015 13:09
-
-
Save hepto/3163bf2e98dec1ad85f0 to your computer and use it in GitHub Desktop.
Convert a folder of FLAC to ALAC while keep metadata
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in ./*.flac; do ffmpeg -i "$f" -c:a alac "${f%.*}.m4a"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment