Skip to content

Instantly share code, notes, and snippets.

@palcode
Forked from bittercoder/convert.sh
Created August 30, 2018 09:50
Show Gist options
  • Save palcode/c950c858ca2ae2dd9b89bf2bbe248d53 to your computer and use it in GitHub Desktop.
Save palcode/c950c858ca2ae2dd9b89bf2bbe248d53 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