deps: bump up exiftool

Signed-off-by: Varun Patil <varunpatil@ucla.edu>
pull/563/head
Varun Patil 2023-03-21 11:05:10 -07:00
parent e8da4bd39d
commit e356a8c2d9
2 changed files with 3 additions and 3 deletions

View File

@ -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'];

View File

@ -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"