photoprism/scripts/dist/heif-convert.sh
2022-03-17 10:14:08 +01:00

19 lines
562 B
Bash
Executable File

#!/bin/bash
if [[ -z $1 ]] && [[ -z $2 ]]; then
echo "Usage: heif-convert <filename> <output>" 1>&2
exit 1
fi
# Usage: heif-convert [-q quality 0..100] <filename> <output>
/usr/bin/heif-convert -q 92 "$1" "$2"
# Reset Exif orientation flag if output image was rotated based on "QuickTime:Rotation"
if [[ $(/usr/bin/exiftool -n -QuickTime:Rotation "$1") ]]; then
/usr/bin/exiftool -overwrite_original -P -n '-ModifyDate<FileModifyDate' -Orientation=1 "$2"
else
/usr/bin/exiftool -overwrite_original -P -n '-ModifyDate<FileModifyDate' "$2"
fi