Skip to content

Commit

Permalink
exif: enable LargeFileSupport (#1195)
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <radialapps@gmail.com>
  • Loading branch information
pulsejet committed May 17, 2024
1 parent fb08cce commit 54d77a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Exif.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Exif
{
private const FORBIDDEN_EDIT_MIMES = ['image/bmp', 'image/x-dcraw', 'video/MP2T']; // also update const.ts
private const EXIFTOOL_TIMEOUT = 30000;
private const EXIFTOOL_ARGS = ['-api', 'QuickTimeUTC=1', '-n', '-json'];
private const EXIFTOOL_ARGS = ['-api', 'QuickTimeUTC=1', '-api', 'LargeFileSupport=1', '-n', '-json'];

/** Opened instance of exiftool when running in command mode */
/** @var null|resource */
Expand Down

0 comments on commit 54d77a7

Please sign in to comment.