Skip to content

Instantly share code, notes, and snippets.

View ZStrikeGit's full-sized avatar

ZStrikeGit

View GitHub Profile
@ZStrikeGit
ZStrikeGit / itcnv
Created October 13, 2023 19:31
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