Skip to content

Instantly share code, notes, and snippets.

@anibalardid
Created June 23, 2022 17:33
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 anibalardid/ccc191f38e845274c7dac2ab4aeb3b43 to your computer and use it in GitHub Desktop.
Save anibalardid/ccc191f38e845274c7dac2ab4aeb3b43 to your computer and use it in GitHub Desktop.
Convert .heic to .jpg
https://linuxnightly.com/convert-heif-images-to-jpg-or-png-on-linux/
$ sudo apt install libheif-examples
$ find . -iname "*.heic" -exec heif-convert -q 100 {} {}.jpg \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment