Skip to content

Instantly share code, notes, and snippets.

@rogiervandenberg
Forked from bittercoder/convert.sh
Created January 2, 2021 20:07
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 rogiervandenberg/c23b7ee3ec06def93eb19c036d873b79 to your computer and use it in GitHub Desktop.
Save rogiervandenberg/c23b7ee3ec06def93eb19c036d873b79 to your computer and use it in GitHub Desktop.
Convert .heic files to .jpg on linux (coming from an iOS11 device over USB)
# download release from github: https://github.com/monostream/tifig/releases and install at ~/tools/tifig
# then run these commands in the folder (just to keep things simple we normalize the file extension case before proceeding).
for f in *.HEIC; do mv "$f" "`echo $f | sed s/.HEIC/.heic/`"; done
for file in *.heic; do echo "~/tools/tifig -v -p $file ${file/%.heic/.jpg}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment