Skip to content

Instantly share code, notes, and snippets.

@kmullin
Created June 17, 2013 18:22
Show Gist options
  • Save kmullin/5798991 to your computer and use it in GitHub Desktop.
Save kmullin/5798991 to your computer and use it in GitHub Desktop.
flac to apple lossless
#!/bin/sh
for i in *.flac; do
ffmpeg -i "$i" -acodec alac "${i%.flac}.m4a"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment