Skip to content

Instantly share code, notes, and snippets.

@ZStrikeGit
Created October 13, 2023 19:31
Show Gist options
  • Save ZStrikeGit/d85014b74b33f76354089bea821c7511 to your computer and use it in GitHub Desktop.
Save ZStrikeGit/d85014b74b33f76354089bea821c7511 to your computer and use it in GitHub Desktop.
ffmpeg FLAC to ALAC batch converter script
for i in *.flac; do ffmpeg -i "$i" -i cover.jpg -map 0 -map 1 -c copy -disposition:v:1 attached_pic -acodec alac "${i%.*}.m4a"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment