Skip to content

Instantly share code, notes, and snippets.

@augustf
Created April 3, 2013 00:48
Show Gist options
  • Save augustf/5297562 to your computer and use it in GitHub Desktop.
Save augustf/5297562 to your computer and use it in GitHub Desktop.
Convert all flac files to m4a
find . -name "*.flac" -type f -exec sh -c 'ffmpeg -i "$0" -acodec alac "`basename "$0" .flac`.m4a"' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment