Skip to content

Instantly share code, notes, and snippets.

@quindariuss
Created September 18, 2021 19:51
Show Gist options
  • Save quindariuss/7de84732a7f2f8db201768480f13c8ef to your computer and use it in GitHub Desktop.
Save quindariuss/7de84732a7f2f8db201768480f13c8ef to your computer and use it in GitHub Desktop.
Convert all Flac files to Alac
for file in *.flac; do ffmpeg -i $file -vn -acodec alac ${file%.*}.m4a; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment