exiftool_vendored 12.83.0 → 12.85.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,7 +16,7 @@ use vars qw($VERSION);
16
16
  use Image::ExifTool::Exif;
17
17
  use Image::ExifTool::PLIST;
18
18
 
19
- $VERSION = '1.11';
19
+ $VERSION = '1.12';
20
20
 
21
21
  sub ConvertPLIST($$);
22
22
 
@@ -128,6 +128,8 @@ sub ConvertPLIST($$);
128
128
  1 => 'ProRAW',
129
129
  2 => 'Portrait',
130
130
  10 => 'Photo',
131
+ 11 => 'Manual Focus', #forum16044
132
+ 12 => 'Scene', #forum16044
131
133
  },
132
134
  },
133
135
  0x0015 => { # (ImageGroupIdentifier, ref 2)
@@ -154,12 +156,17 @@ sub ConvertPLIST($$);
154
156
  },
155
157
  # 0x001b - (PhotosRenderEffect, ref 2)
156
158
  # 0x001c - (BracketedCaptureSequenceNumber, ref 2)
159
+ # 0x001c - Flash, 2="On" (ref PH)
157
160
  0x001d => { #2
158
161
  Name => 'LuminanceNoiseAmplitude',
159
162
  Writable => 'rational64s',
160
163
  },
161
164
  # 0x001e - (OriginatingAppID, ref 2)
162
- # 0x001f - int32s: 0,1 (PhotosAppFeatureFlags, ref 2)
165
+ 0x001f => {
166
+ Name => 'PhotosAppFeatureFlags', #2
167
+ Notes => 'set if person or pet detected in image', #PH
168
+ Writable => 'int32s',
169
+ },
163
170
  0x0020 => { # (ImageCaptureRequestIdentifier, ref 2)
164
171
  Name => 'ImageCaptureRequestID',
165
172
  Writable => 'string',
@@ -170,6 +177,17 @@ sub ConvertPLIST($$);
170
177
  Writable => 'rational64s',
171
178
  },
172
179
  # 0x0022 - (ARKitPhoto, ref 2)
180
+ 0x0023 => {
181
+ Name => 'AFPerformance', #2
182
+ Writable => 'int32s',
183
+ Count => 2,
184
+ Notes => q{
185
+ first number maybe related to focus distance, last number maybe related to
186
+ focus accuracy
187
+ },
188
+ PrintConv => 'my @a=split " ",$val; sprintf("%d %d %d",$a[0],$a[1]>>28,$a[1]&0xfffffff)',
189
+ PrintConvInv => 'my @a=split " ",$val; sprintf("%d %d",$a[0],($a[1]<<28)+$a[2])',
190
+ },
173
191
  # 0x0023 - int32s[2] (AFPerformance, ref 2)
174
192
  # 0x0024 - (AFExternalOffset, ref 2)
175
193
  0x0025 => { # (StillImageSceneFlags, ref 2)
@@ -196,7 +214,21 @@ sub ConvertPLIST($$);
196
214
  },
197
215
  # 0x002C - (SpatialOverCaptureImageType, ref 2)
198
216
  # 0x002D - (CCT, ref 2)
217
+ 0x002d => { #PH
218
+ Name => 'ColorTemperature',
219
+ Writable => 'int32s',
220
+ },
199
221
  # 0x002E - (ApsMode, ref 2)
222
+ 0x002e => { #PH
223
+ Name => 'CameraType',
224
+ Writable => 'int32s',
225
+ PrintConv => {
226
+ 0 => 'Back Wide Angle',
227
+ 1 => 'Back Normal',
228
+ 6 => 'Front',
229
+ },
230
+ },
231
+ # 0x002e - set to 0 for 0.5x (crop?) (ref PH)
200
232
  0x002F => { #2
201
233
  Name => 'FocusPosition',
202
234
  Writable => 'int32s',
@@ -209,7 +241,9 @@ sub ConvertPLIST($$);
209
241
  # 0x0032 - (IntelligentDistortionCorrection, ref 2)
210
242
  # 0x0033 - (NRFStatus, ref 2)
211
243
  # 0x0034 - (NRFInputBracketCount, ref 2)
244
+ # 0x0034 - 1 for flash on, otherwise doesn't exist (ref PH)
212
245
  # 0x0035 - (NRFRegisteredBracketCount, ref 2)
246
+ # 0x0035 - 0 for flash on, otherwise doesn't exist (ref PH)
213
247
  # 0x0036 - (LuxLevel, ref 2)
214
248
  # 0x0037 - (LastFocusingMethod, ref 2)
215
249
  0x0038 => { # (TimeOfFlightAssistedAutoFocusEstimatorMeasuredDepth, ref 2)
@@ -219,8 +253,10 @@ sub ConvertPLIST($$);
219
253
  },
220
254
  # 0x0039 - (TimeOfFlightAssistedAutoFocusEstimatorROIType, ref 2)
221
255
  # 0x003A - (NRFSRLStatus, ref 2)
256
+ # 0x003a - non-zero if a person was in the image? (ref PH)
222
257
  # 0x003B - (SystemPressureLevel, ref 2)
223
258
  # 0x003C - (CameraControlsStatisticsMaster, ref 2)
259
+ # 0x003c - 4=rear cam, 1=front cam? (ref PH)
224
260
  0x003D => { # (TimeOfFlightAssistedAutoFocusEstimatorSensorConfidence, ref 2)
225
261
  Name => 'AFConfidence',
226
262
  Writable => 'int32s',
@@ -237,6 +273,7 @@ sub ConvertPLIST($$);
237
273
  },
238
274
  0x0040 => { #2
239
275
  Name => 'SemanticStyle',
276
+ Notes => '_1=Tone, _2=Warm, _3=1.Std,2.Vibrant,3.Rich Contrast,4.Warm,5.Cool', #PH
240
277
  ValueConv => \&ConvertPLIST,
241
278
  },
242
279
  0x0041 => { # (SemanticStyleKey_RenderingVersion, ref 2)
@@ -249,20 +286,28 @@ sub ConvertPLIST($$);
249
286
  },
250
287
  # 0x0043 - (SemanticStyleKey_ToneBias, ref 2)
251
288
  # 0x0044 - (SemanticStyleKey_WarmthBias, ref 2)
252
- 0x0045 => { # (FrontFacing, ref 2)
253
- Name => 'FrontFacingCamera',
254
- Writable => 'int32s',
255
- PrintConv => { 0 => 'No', 1 => 'Yes' }, #PH (NC)
256
- },
289
+ # 0x0045 - (FrontFacing, ref 2) (not for iPhone15, ref PH)
257
290
  # 0x0046 - (TimeOfFlightAssistedAutoFocusEstimatorContainsBlindSpot, ref 2)
258
291
  # 0x0047 - (LeaderFollowerAutoFocusLeaderDepth, ref 2)
259
292
  # 0x0048 - (LeaderFollowerAutoFocusLeaderFocusMethod, ref 2)
260
293
  # 0x0049 - (LeaderFollowerAutoFocusLeaderConfidence, ref 2)
261
294
  # 0x004A - (LeaderFollowerAutoFocusLeaderROIType, ref 2)
295
+ # 0x004a - 2=back normal, 4=back wide angle, 5=front (ref PH)
262
296
  # 0x004B - (ZeroShutterLagFailureReason, ref 2)
263
297
  # 0x004C - (TimeOfFlightAssistedAutoFocusEstimatorMSPMeasuredDepth, ref 2)
264
298
  # 0x004D - (TimeOfFlightAssistedAutoFocusEstimatorMSPSensorConfidence, ref 2)
265
299
  # 0x004E - (Camera, ref 2)
300
+ 0x004e => {
301
+ Name => 'Apple_0x004e',
302
+ Unknown => 1,
303
+ # first number is 0 for front cam, 1 for either back cam (ref PH)
304
+ ValueConv => \&ConvertPLIST,
305
+ },
306
+ 0x004f => {
307
+ Name => 'Apple_0x004f',
308
+ Unknown => 1,
309
+ ValueConv => \&ConvertPLIST,
310
+ }
266
311
  );
267
312
 
268
313
  # PLIST-format CMTime structure (ref PH)
@@ -88,7 +88,7 @@ sub ProcessCTMD($$$);
88
88
  sub ProcessExifInfo($$$);
89
89
  sub SwapWords($);
90
90
 
91
- $VERSION = '4.74';
91
+ $VERSION = '4.75';
92
92
 
93
93
  # Note: Removed 'USM' from 'L' lenses since it is redundant - PH
94
94
  # (or is it? Ref 32 shows 5 non-USM L-type lenses)
@@ -2590,6 +2590,13 @@ my %offOn = ( 0 => 'Off', 1 => 'On' );
2590
2590
  },
2591
2591
  # 47 - related to aspect ratio: 100=4:3,70=1:1/16:9,90=3:2,60=4:5 (PH G12)
2592
2592
  # (roughly image area in percent - 4:3=100%,1:1/16:9=75%,3:2=89%,4:5=60%)
2593
+ 51 => { #forum16036 (EOS R models)
2594
+ Name => 'Clarity',
2595
+ PrintConv => {
2596
+ OTHER => sub { shift },
2597
+ 0x7fff => 'n/a',
2598
+ },
2599
+ },
2593
2600
  );
2594
2601
 
2595
2602
  # focal length information (MakerNotes tag 0x02)
@@ -7031,7 +7038,7 @@ my %ciMaxFocal = (
7031
7038
  },
7032
7039
  },
7033
7040
  2 => { #12
7034
- Name => 'Sharpness',
7041
+ Name => 'Sharpness', # (unsharp mask strength for the EOS R5)
7035
7042
  Notes => 'all models except the 20D and 350D',
7036
7043
  Condition => '$$self{Model} !~ /\b(20D|350D|REBEL XT|Kiss Digital N)\b/',
7037
7044
  Priority => 0, # (maybe not as reliable as other sharpness values)
@@ -7077,6 +7084,8 @@ my %ciMaxFocal = (
7077
7084
  Name => 'WBShiftGM',
7078
7085
  Notes => 'positive is a shift toward green',
7079
7086
  },
7087
+ 14 => 'UnsharpMaskFineness', #forum16036
7088
+ 15 => 'UnsharpMaskThreshold', #forum16036
7080
7089
  );
7081
7090
 
7082
7091
  # Color balance information (MakerNotes tag 0xa9) (ref PH)
@@ -23,7 +23,7 @@ use vars qw($VERSION);
23
23
  use Image::ExifTool qw(:DataAccess :Utils);
24
24
  use Image::ExifTool::Canon;
25
25
 
26
- $VERSION = '1.40';
26
+ $VERSION = '1.41';
27
27
 
28
28
  sub ProcessCanonVRD($$;$);
29
29
  sub WriteCanonVRD($$;$);
@@ -1020,6 +1020,18 @@ my $blankFooter = "CANON OPTIONAL DATA\0" . ("\0" x 42) . "\xff\xd9";
1020
1020
  # 0x10018 - fmt=8: 0
1021
1021
  # 0x10020 - fmt=2: ''
1022
1022
  0x10021 => 'CustomPictureStyle', # (string)
1023
+ 0x10100 => { #forum15965
1024
+ Name => 'Rating',
1025
+ PrintConv => {
1026
+ 0 => 'Unrated',
1027
+ 1 => 1,
1028
+ 2 => 2,
1029
+ 3 => 3,
1030
+ 4 => 4,
1031
+ 5 => 5,
1032
+ 4294967295 => 'Rejected',
1033
+ },
1034
+ },
1023
1035
  0x10101 => {
1024
1036
  Name => 'CheckMark',
1025
1037
  PrintConv => {
@@ -15,7 +15,7 @@ use strict;
15
15
  use vars qw($VERSION);
16
16
  use Image::ExifTool qw(:DataAccess :Utils);
17
17
 
18
- $VERSION = '1.06';
18
+ $VERSION = '1.07';
19
19
 
20
20
  # DPX tags
21
21
  %Image::ExifTool::DPX::Main = (
@@ -97,7 +97,7 @@ $VERSION = '1.06';
97
97
  3 => 'Logarithmic',
98
98
  4 => 'Unspecified video',
99
99
  5 => 'SMPTE 274M',
100
- 6 => 'ITU-R 704-4',
100
+ 6 => 'ITU-R 709-4',
101
101
  7 => 'ITU-R 601-5 system B or G (625)',
102
102
  8 => 'ITU-R 601-5 system M (525)',
103
103
  9 => 'Composite video (NTSC)',
@@ -124,7 +124,7 @@ $VERSION = '1.06';
124
124
  1 => 'Printing density',
125
125
  4 => 'Unspecified video',
126
126
  5 => 'SMPTE 274M',
127
- 6 => 'ITU-R 704-4',
127
+ 6 => 'ITU-R 709-4',
128
128
  7 => 'ITU-R 601-5 system B or G (625)',
129
129
  8 => 'ITU-R 601-5 system M (525)',
130
130
  9 => 'Composite video (NTSC)',
Binary file