Skip to content

Instantly share code, notes, and snippets.

@ledovsky
Created June 28, 2015 07:50
Show Gist options
  • Save ledovsky/50cdece546326935f457 to your computer and use it in GitHub Desktop.
Save ledovsky/50cdece546326935f457 to your computer and use it in GitHub Desktop.
Convert FLAC to ALAC
for f in *.flac; do ffmpeg -i "$f" -vf "crop=((in_w/2)*2):((in_h/2)*2)" -c:a alac "${f%.flac}.m4a"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment