Skip to content

Instantly share code, notes, and snippets.

@sepastian
Last active December 28, 2015 04:59
Show Gist options
  • Save sepastian/7446897 to your computer and use it in GitHub Desktop.
Save sepastian/7446897 to your computer and use it in GitHub Desktop.
Convert m4a (iTunes store) to FLACC using avconv.
# Convert m4a (iTunes store) to flac using avconv.
ls *m4a | while read f; do avconv -i "$f" "${f/m4a/flac}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment