Skip to content

Instantly share code, notes, and snippets.

@ksmandersen
Created January 5, 2017 08:55
Show Gist options
  • Save ksmandersen/b530b3f780e5470a2548c16e098a5fcd to your computer and use it in GitHub Desktop.
Save ksmandersen/b530b3f780e5470a2548c16e098a5fcd to your computer and use it in GitHub Desktop.
FLAC to ALAC
for f in ./*.flac; do avconv -n -i "$f" -c:a alac "${f%.*}.m4a" && rm "$f"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment