Skip to content

Instantly share code, notes, and snippets.

@mtrl
Created May 18, 2012 09:06
Show Gist options
  • Select an option

  • Save mtrl/2724148 to your computer and use it in GitHub Desktop.

Select an option

Save mtrl/2724148 to your computer and use it in GitHub Desktop.
ffmpeg - FLAC to m4a
for i in *.flac; do ffmpeg -i "$i" -acodec alac "`basename "$i" .flac`.m4a"; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment