Skip to content

Instantly share code, notes, and snippets.

@gillesdemey
Created August 21, 2020 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gillesdemey/da36af0b4275009bf1b4a60fb955ffc6 to your computer and use it in GitHub Desktop.
Save gillesdemey/da36af0b4275009bf1b4a60fb955ffc6 to your computer and use it in GitHub Desktop.
# also copies over metadata like album art
for i in *.flac; do echo $i; ffmpeg -i "$i" -y -v 0 -vcodec copy -acodec alac "${i%.flac}".m4a && rm -f "$i"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment