Last active
December 28, 2015 04:59
-
-
Save sepastian/7446897 to your computer and use it in GitHub Desktop.
Convert m4a (iTunes store) to FLACC using avconv.
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
# 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