From 512f0629f5752732418ab1ea1a132472ed6f747f Mon Sep 17 00:00:00 2001 From: jgrogan Date: Mon, 26 Aug 2024 08:42:23 +0100 Subject: [PATCH] Add basic heic conversoin --- src/photos/convert_heic.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 src/photos/convert_heic.sh diff --git a/src/photos/convert_heic.sh b/src/photos/convert_heic.sh new file mode 100755 index 0000000..55c0d12 --- /dev/null +++ b/src/photos/convert_heic.sh @@ -0,0 +1,4 @@ +for f in $(find . -name '*.HEIC'); + do echo "Converting $f"; +/home/jgrogan/code/ImageMagick-7.1.1-35/utilities/magick mogrify -format png -quality 100% "$f"; +done;