Skip to content

Instantly share code, notes, and snippets.

@bunkbail
Created January 10, 2026 13:11
Show Gist options
  • Select an option

  • Save bunkbail/162d503a4cb8f4fc72a9532cd6863499 to your computer and use it in GitHub Desktop.

Select an option

Save bunkbail/162d503a4cb8f4fc72a9532cd6863499 to your computer and use it in GitHub Desktop.
compress png into highly compressed heic
for f in *.png; do
avifenc -q 65 -y 420 -a end-usage=q -a sharpness=0 -a aq-mode=2 -s 2 -j $(nproc) -d 12 -a film-grain-test=0 "$f" "${f%.*}.heic"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment