diff --git a/lib/Exif.php b/lib/Exif.php index e4a5c30d..fc90a96d 100644 --- a/lib/Exif.php +++ b/lib/Exif.php @@ -11,7 +11,7 @@ use OCP\IConfig; class Exif { private const FORBIDDEN_EDIT_MIMES = ['image/bmp', 'image/x-dcraw', 'video/MP2T']; - private const EXIFTOOL_VER = '12.50'; + private const EXIFTOOL_VER = '12.58'; private const EXIFTOOL_TIMEOUT = 30000; private const EXIFTOOL_ARGS = ['-api', 'QuickTimeUTC=1', '-n', '-U', '-json', '--b']; diff --git a/scripts/get-exiftool.sh b/scripts/get-exiftool.sh index f3a56324..3057adb4 100755 --- a/scripts/get-exiftool.sh +++ b/scripts/get-exiftool.sh @@ -2,7 +2,7 @@ set -e -exifver="12.50" +exifver="12.58" rm -rf exiftool-bin mkdir -p exiftool-bin @@ -17,7 +17,7 @@ chmod 755 * wget -q "https://github.com/exiftool/exiftool/archive/refs/tags/$exifver.zip" unzip -qq "$exifver.zip" mv "exiftool-$exifver" exiftool -rm -rf *.zip exiftool/t exiftool/html +rm -rf *.zip exiftool/t exiftool/html exiftool/windows_exiftool chmod 755 exiftool/exiftool govod="0.0.34"