Skip to content

Instantly share code, notes, and snippets.

@hepto
Created November 24, 2015 13:09
Show Gist options
  • Save hepto/3163bf2e98dec1ad85f0 to your computer and use it in GitHub Desktop.
Save hepto/3163bf2e98dec1ad85f0 to your computer and use it in GitHub Desktop.
Convert a folder of FLAC to ALAC while keep metadata
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