Skip to content

Instantly share code, notes, and snippets.

@ZacharyThompson
Created October 2, 2024 21:25
Show Gist options
  • Save ZacharyThompson/d6aeb5f2a74be7d6401abaf6ab188e20 to your computer and use it in GitHub Desktop.
Save ZacharyThompson/d6aeb5f2a74be7d6401abaf6ab188e20 to your computer and use it in GitHub Desktop.
Convert flac to alac (for apple music upload)
#!/bin/sh
mkdir -p "./output"
for x in *.flac
do
ffmpeg -i "$x" -c:v copy -c:a alac "./output/$(basename -- "$x" .flac).m4a"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment