Created
May 23, 2022 06:52
-
-
Save dpanic/46e63a30b7a16bda78727931b25d9b68 to your computer and use it in GitHub Desktop.
heic to jpg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
for f in *.heic; do | |
out=$(echo $f | sed -e s/\.heic/\.jpg/g) | |
heif-convert -q 92 $f $out | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment