exiftool_vendored 12.17.1 → 12.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/Changes +225 -1
- data/bin/MANIFEST +23 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +45 -43
- data/bin/arg_files/xmp2exif.args +2 -1
- data/bin/config_files/acdsee.config +193 -6
- data/bin/config_files/convert_regions.config +25 -14
- data/bin/config_files/cuepointlist.config +70 -0
- data/bin/config_files/example.config +2 -9
- data/bin/exiftool +142 -87
- data/bin/fmt_files/gpx.fmt +2 -2
- data/bin/fmt_files/gpx_wpt.fmt +2 -2
- data/bin/fmt_files/kml.fmt +1 -1
- data/bin/fmt_files/kml_track.fmt +1 -1
- data/bin/lib/Image/ExifTool/Apple.pm +3 -2
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +30 -12
- data/bin/lib/Image/ExifTool/CBOR.pm +277 -0
- data/bin/lib/Image/ExifTool/Canon.pm +49 -18
- data/bin/lib/Image/ExifTool/DJI.pm +6 -6
- data/bin/lib/Image/ExifTool/DPX.pm +13 -2
- data/bin/lib/Image/ExifTool/DjVu.pm +6 -5
- data/bin/lib/Image/ExifTool/Exif.pm +28 -11
- data/bin/lib/Image/ExifTool/FITS.pm +13 -2
- data/bin/lib/Image/ExifTool/FlashPix.pm +35 -10
- data/bin/lib/Image/ExifTool/FujiFilm.pm +19 -8
- data/bin/lib/Image/ExifTool/GPS.pm +22 -11
- data/bin/lib/Image/ExifTool/Geotag.pm +13 -2
- data/bin/lib/Image/ExifTool/GoPro.pm +16 -1
- data/bin/lib/Image/ExifTool/ICC_Profile.pm +2 -2
- data/bin/lib/Image/ExifTool/ID3.pm +15 -3
- data/bin/lib/Image/ExifTool/JPEG.pm +74 -4
- data/bin/lib/Image/ExifTool/JSON.pm +27 -4
- data/bin/lib/Image/ExifTool/Jpeg2000.pm +393 -16
- data/bin/lib/Image/ExifTool/LIF.pm +153 -0
- data/bin/lib/Image/ExifTool/Lang/nl.pm +60 -59
- data/bin/lib/Image/ExifTool/M2TS.pm +137 -5
- data/bin/lib/Image/ExifTool/MIE.pm +4 -3
- data/bin/lib/Image/ExifTool/MRC.pm +341 -0
- data/bin/lib/Image/ExifTool/MWG.pm +3 -3
- data/bin/lib/Image/ExifTool/MXF.pm +1 -1
- data/bin/lib/Image/ExifTool/MacOS.pm +1 -1
- data/bin/lib/Image/ExifTool/Microsoft.pm +298 -82
- data/bin/lib/Image/ExifTool/Nikon.pm +19 -8
- data/bin/lib/Image/ExifTool/NikonSettings.pm +28 -11
- data/bin/lib/Image/ExifTool/Olympus.pm +6 -3
- data/bin/lib/Image/ExifTool/Other.pm +93 -0
- data/bin/lib/Image/ExifTool/PDF.pm +9 -12
- data/bin/lib/Image/ExifTool/PNG.pm +8 -7
- data/bin/lib/Image/ExifTool/Panasonic.pm +28 -3
- data/bin/lib/Image/ExifTool/Pentax.pm +28 -5
- data/bin/lib/Image/ExifTool/PhaseOne.pm +4 -3
- data/bin/lib/Image/ExifTool/Photoshop.pm +6 -0
- data/bin/lib/Image/ExifTool/QuickTime.pm +247 -88
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +283 -141
- data/bin/lib/Image/ExifTool/README +3 -0
- data/bin/lib/Image/ExifTool/RIFF.pm +89 -12
- data/bin/lib/Image/ExifTool/Samsung.pm +48 -10
- data/bin/lib/Image/ExifTool/Shortcuts.pm +9 -0
- data/bin/lib/Image/ExifTool/Sony.pm +237 -78
- data/bin/lib/Image/ExifTool/TagInfoXML.pm +1 -0
- data/bin/lib/Image/ExifTool/TagLookup.pm +4125 -4028
- data/bin/lib/Image/ExifTool/TagNames.pod +644 -286
- data/bin/lib/Image/ExifTool/Torrent.pm +18 -11
- data/bin/lib/Image/ExifTool/WriteExif.pl +1 -1
- data/bin/lib/Image/ExifTool/WriteIPTC.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePDF.pl +1 -0
- data/bin/lib/Image/ExifTool/WritePNG.pl +2 -0
- data/bin/lib/Image/ExifTool/WritePostScript.pl +1 -0
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +55 -21
- data/bin/lib/Image/ExifTool/WriteXMP.pl +7 -3
- data/bin/lib/Image/ExifTool/Writer.pl +47 -10
- data/bin/lib/Image/ExifTool/XMP.pm +39 -14
- data/bin/lib/Image/ExifTool/XMP2.pl +2 -1
- data/bin/lib/Image/ExifTool/XMPStruct.pl +3 -1
- data/bin/lib/Image/ExifTool/ZISRAW.pm +121 -2
- data/bin/lib/Image/ExifTool.pm +223 -72
- data/bin/lib/Image/ExifTool.pod +114 -93
- data/bin/perl-Image-ExifTool.spec +43 -42
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +28 -13
data/bin/lib/Image/ExifTool.pod
CHANGED
|
@@ -65,47 +65,48 @@ supported by ExifTool (r = read, w = write, c = create):
|
|
|
65
65
|
|
|
66
66
|
File Types
|
|
67
67
|
------------+-------------+-------------+-------------+------------
|
|
68
|
-
360 r/w |
|
|
69
|
-
3FR r |
|
|
70
|
-
3G2 r/w |
|
|
71
|
-
3GP r/w |
|
|
72
|
-
A r |
|
|
73
|
-
AA r |
|
|
74
|
-
AAE r |
|
|
75
|
-
AAX r/w |
|
|
76
|
-
ACR r |
|
|
77
|
-
AFM r |
|
|
78
|
-
AI r/w |
|
|
79
|
-
AIFF r |
|
|
80
|
-
APE r |
|
|
81
|
-
ARQ r/w |
|
|
82
|
-
ARW r/w |
|
|
83
|
-
ASF r |
|
|
84
|
-
AVI r |
|
|
85
|
-
AVIF r/w |
|
|
86
|
-
AZW r |
|
|
87
|
-
BMP r |
|
|
88
|
-
BPG r |
|
|
89
|
-
BTF r |
|
|
90
|
-
CHM r |
|
|
91
|
-
COS r |
|
|
92
|
-
CR2 r/w |
|
|
93
|
-
CR3 r/w |
|
|
94
|
-
CRM r/w |
|
|
95
|
-
CRW r/w |
|
|
96
|
-
CS1 r/w |
|
|
97
|
-
CSV r |
|
|
98
|
-
CZI r |
|
|
99
|
-
DCM r |
|
|
100
|
-
DCP r/w |
|
|
101
|
-
DCR r |
|
|
102
|
-
DFONT r |
|
|
103
|
-
DIVX r |
|
|
104
|
-
DJVU r |
|
|
105
|
-
DLL r |
|
|
106
|
-
DNG r/w |
|
|
107
|
-
DOC r |
|
|
108
|
-
DOCX r |
|
|
68
|
+
360 r/w | DR4 r/w/c | JNG r/w | ODP r | RIFF r
|
|
69
|
+
3FR r | DSS r | JP2 r/w | ODS r | RSRC r
|
|
70
|
+
3G2 r/w | DV r | JPEG r/w | ODT r | RTF r
|
|
71
|
+
3GP r/w | DVB r/w | JSON r | OFR r | RW2 r/w
|
|
72
|
+
A r | DVR-MS r | JXL r | OGG r | RWL r/w
|
|
73
|
+
AA r | DYLIB r | K25 r | OGV r | RWZ r
|
|
74
|
+
AAE r | EIP r | KDC r | ONP r | RM r
|
|
75
|
+
AAX r/w | EPS r/w | KEY r | OPUS r | SEQ r
|
|
76
|
+
ACR r | EPUB r | LA r | ORF r/w | SKETCH r
|
|
77
|
+
AFM r | ERF r/w | LFP r | ORI r/w | SO r
|
|
78
|
+
AI r/w | EXE r | LIF r | OTF r | SR2 r/w
|
|
79
|
+
AIFF r | EXIF r/w/c | LNK r | PAC r | SRF r
|
|
80
|
+
APE r | EXR r | LRV r/w | PAGES r | SRW r/w
|
|
81
|
+
ARQ r/w | EXV r/w/c | M2TS r | PBM r/w | SVG r
|
|
82
|
+
ARW r/w | F4A/V r/w | M4A/V r/w | PCD r | SWF r
|
|
83
|
+
ASF r | FFF r/w | MACOS r | PCX r | THM r/w
|
|
84
|
+
AVI r | FITS r | MAX r | PDB r | TIFF r/w
|
|
85
|
+
AVIF r/w | FLA r | MEF r/w | PDF r/w | TORRENT r
|
|
86
|
+
AZW r | FLAC r | MIE r/w/ | PEF r/w | TTC r
|
|
87
|
+
BMP r | FLIF r/w | MIFF r c | PFA r | TTF r
|
|
88
|
+
BPG r | FLV r | MKA r | PFB r | TXT r
|
|
89
|
+
BTF r | FPF r | MKS r | PFM r | VCF r
|
|
90
|
+
CHM r | FPX r | MKV r | PGF r | VRD r/w/c
|
|
91
|
+
COS r | GIF r/w | MNG r/w | PGM r/w | VSD r
|
|
92
|
+
CR2 r/w | GPR r/w | MOBI r | PLIST r | WAV r
|
|
93
|
+
CR3 r/w | GZ r | MODD r | PICT r | WDP r/w
|
|
94
|
+
CRM r/w | HDP r/w | MOI r | PMP r | WEBP r
|
|
95
|
+
CRW r/w | HDR r | MOS r/w | PNG r/w | WEBM r
|
|
96
|
+
CS1 r/w | HEIC r/w | MOV r/w | PPM r/w | WMA r
|
|
97
|
+
CSV r | HEIF r/w | MP3 r | PPT r | WMV r
|
|
98
|
+
CZI r | HTML r | MP4 r/w | PPTX r | WTV r
|
|
99
|
+
DCM r | ICC r/w/c | MPC r | PS r/w | WV r
|
|
100
|
+
DCP r/w | ICS r | MPG r | PSB r/w | X3F r/w
|
|
101
|
+
DCR r | IDML r | MPO r/w | PSD r/w | XCF r
|
|
102
|
+
DFONT r | IIQ r/w | MQV r/w | PSP r | XLS r
|
|
103
|
+
DIVX r | IND r/w | MRC r | QTIF r/w | XLSX r
|
|
104
|
+
DJVU r | INSP r/w | MRW r/w | R3D r | XMP r/w/c
|
|
105
|
+
DLL r | INSV r | MXF r | RA r | ZIP r
|
|
106
|
+
DNG r/w | INX r | NEF r/w | RAF r/w |
|
|
107
|
+
DOC r | ISO r | NRW r/w | RAM r |
|
|
108
|
+
DOCX r | ITC r | NUMBERS r | RAR r |
|
|
109
|
+
DPX r | J2C r | O r | RAW r/w |
|
|
109
110
|
|
|
110
111
|
Meta Information
|
|
111
112
|
----------------------+----------------------+---------------------
|
|
@@ -176,6 +177,9 @@ Creates a new ExifTool object.
|
|
|
176
177
|
|
|
177
178
|
$exifTool = new Image::ExifTool;
|
|
178
179
|
|
|
180
|
+
One ExifTool object may be used to process many files, so creating multiple
|
|
181
|
+
ExifTool objects usually is not necessary.
|
|
182
|
+
|
|
179
183
|
Note that ExifTool uses AUTOLOAD to load non-member methods, so any class
|
|
180
184
|
using Image::ExifTool as a base class must define an AUTOLOAD which calls
|
|
181
185
|
Image::ExifTool::DoAutoLoad(). eg)
|
|
@@ -386,7 +390,8 @@ to some functions. Option names are not case sensitive.
|
|
|
386
390
|
|
|
387
391
|
The default option values may be changed by defining a
|
|
388
392
|
%Image::ExifTool::UserDefined::Options hash. See the ExifTool_config file
|
|
389
|
-
in the full ExifTool distribution for examples.
|
|
393
|
+
in the full ExifTool distribution for examples. A default of undef has the
|
|
394
|
+
same behaviour as a value of 0 for numerical options.
|
|
390
395
|
|
|
391
396
|
# exclude the 'OwnerName' tag from returned information
|
|
392
397
|
$exifTool->Options(Exclude => 'OwnerName');
|
|
@@ -438,6 +443,13 @@ large binary data blocks (eg. ThumbnailImage) are not necessarily extracted
|
|
|
438
443
|
unless this option is set or the tag is specifically requested by name.
|
|
439
444
|
Default is undef.
|
|
440
445
|
|
|
446
|
+
=item BlockExtract
|
|
447
|
+
|
|
448
|
+
Flag to extract some directories (mentioned in the
|
|
449
|
+
L<ExifTool tag name documentation|Image::ExifTool::TagNames>) as a block.
|
|
450
|
+
Setting this to a value of 2 also prevents parsing the block to extract tags
|
|
451
|
+
contained within.
|
|
452
|
+
|
|
441
453
|
=item ByteOrder
|
|
442
454
|
|
|
443
455
|
The byte order for newly created EXIF segments when writing. Note that if
|
|
@@ -627,8 +639,9 @@ Flag to extract information from embedded documents in EPS files, embedded
|
|
|
627
639
|
EPS information and JPEG and Jpeg2000 images in PDF files, embedded MPF
|
|
628
640
|
images in JPEG and MPO files, timed metadata in videos, and the resource
|
|
629
641
|
fork of Mac OS files. A setting of 2 also causes the H264 video stream in
|
|
630
|
-
MP4 files to be parsed until the first SEI message is decoded, or 3 to
|
|
631
|
-
|
|
642
|
+
MP4 files to be parsed until the first SEI message is decoded, or 3 to parse
|
|
643
|
+
the entire H264 stream in MP4 videos and the entire M2TS file to look for
|
|
644
|
+
any unlisted program containing GPS metadata. Default is undef.
|
|
632
645
|
|
|
633
646
|
=item FastScan
|
|
634
647
|
|
|
@@ -737,8 +750,8 @@ group names.
|
|
|
737
750
|
|
|
738
751
|
=item HexTagIDs
|
|
739
752
|
|
|
740
|
-
|
|
741
|
-
numerical ID's.
|
|
753
|
+
Return hexadecimal instead of decimal for the family 7 group names of tags
|
|
754
|
+
with numerical ID's.
|
|
742
755
|
|
|
743
756
|
=item HtmlDump
|
|
744
757
|
|
|
@@ -843,8 +856,9 @@ print conversion for writing. Default is 1.
|
|
|
843
856
|
|
|
844
857
|
Flag set to add an 'mdir' Handler to a newly created Meta box when adding
|
|
845
858
|
QuickTime ItemList tags. Adobe Bridge does not add this Handler, but it is
|
|
846
|
-
commonly found in samples from other software,
|
|
847
|
-
|
|
859
|
+
commonly found in samples from other software, and it has been reported that
|
|
860
|
+
Apple QuickTime Player and Photos.apps will ignore ItemList tags if this is
|
|
861
|
+
missing. Default is 1.
|
|
848
862
|
|
|
849
863
|
=item QuickTimeUTC
|
|
850
864
|
|
|
@@ -1174,8 +1188,9 @@ file from scratch. A reference to a
|
|
|
1174
1188
|
L<File::RandomAccess|File::RandomAccess> object is also allowed as a source,
|
|
1175
1189
|
but in this case the destination is not optional.
|
|
1176
1190
|
|
|
1177
|
-
2) [optional] Destination file name, file reference, scalar reference
|
|
1178
|
-
undef to overwrite the original file. May be '-' to
|
|
1191
|
+
2) [optional] Destination file name, file reference, scalar reference to
|
|
1192
|
+
write to memory, or undef to overwrite the original file. May be '-' to
|
|
1193
|
+
write to stdout.
|
|
1179
1194
|
|
|
1180
1195
|
3) [optional] Destination file type. Ignored if a source is defined.
|
|
1181
1196
|
|
|
@@ -1220,8 +1235,8 @@ called with a source file name.
|
|
|
1220
1235
|
The following ExifTool options are effective in the call to L</WriteInfo>:
|
|
1221
1236
|
|
|
1222
1237
|
ByteOrder, Charset, CharsetEXIF, CharsetFileName, CharsetIPTC, Compact,
|
|
1223
|
-
Compress, FixBase, IgnoreMinorErrors,
|
|
1224
|
-
and WriteMode.
|
|
1238
|
+
Compress, FixBase, IgnoreMinorErrors, NoMultiExif, NoPDFList, Password,
|
|
1239
|
+
QuickTimeHandler, Verbose and WriteMode.
|
|
1225
1240
|
|
|
1226
1241
|
=head2 GetTagList
|
|
1227
1242
|
|
|
@@ -1471,13 +1486,13 @@ optional leading family numbers, separated by colons (eg. 'EXIF:Artist',
|
|
|
1471
1486
|
'XMP:Time:*'), which is equivalent to using a Group option argument. Also,
|
|
1472
1487
|
a '#' may be appended to the tag name (eg. 'EXIF:Orientation#'), with the
|
|
1473
1488
|
same effect as setting Type to 'ValueConv'. Wildcards ('*' and '?') may be
|
|
1474
|
-
used in the tag name to assign multiple tags simultaneously. A
|
|
1475
|
-
'*' is special when deleting information, and will delete an
|
|
1476
|
-
even if some individual tags in the group are not writable, but
|
|
1477
|
-
single family 0 or 1 group is specified (otherwise the tags are
|
|
1478
|
-
individually). Use L</GetDeleteGroups> to get a list of deletable
|
|
1479
|
-
names, and see L<Image::ExifTool::TagNames|Image::ExifTool::TagNames>
|
|
1480
|
-
complete list of tag names.
|
|
1489
|
+
used in the tag name to assign or delete multiple tags simultaneously. A
|
|
1490
|
+
tag name of '*' is special when deleting information, and will delete an
|
|
1491
|
+
entire group even if some individual tags in the group are not writable, but
|
|
1492
|
+
only if a single family 0 or 1 group is specified (otherwise the tags are
|
|
1493
|
+
deleted individually). Use L</GetDeleteGroups> to get a list of deletable
|
|
1494
|
+
group names, and see L<Image::ExifTool::TagNames|Image::ExifTool::TagNames>
|
|
1495
|
+
for a complete list of tag names.
|
|
1481
1496
|
|
|
1482
1497
|
2) [optional] New value for tag. Undefined to delete tag from file. May be
|
|
1483
1498
|
a scalar, scalar reference, list reference to set a list of values, or hash
|
|
@@ -2049,6 +2064,7 @@ The group family numbers are currently available:
|
|
|
2049
2064
|
4) Instance Number (eg. Copy1, Copy2, Copy3...)
|
|
2050
2065
|
5) Metadata Path (eg. JPEG-APP1-IFD0-ExifIFD)
|
|
2051
2066
|
6) EXIF/TIFF Format (eg. int8u, int32u, undef, string)
|
|
2067
|
+
7) Tag ID (eg. ID-271, ID-rights, ID-a9aut)
|
|
2052
2068
|
|
|
2053
2069
|
Families 0 and 1 are based on the file structure, and are similar except
|
|
2054
2070
|
that family 1 is more specific and sub-divides some groups to give more
|
|
@@ -2092,13 +2108,14 @@ Family 6 is currently used only for EXIF/TIFF metadata, and gives the format
|
|
|
2092
2108
|
type of the extracted value. Generated only if the L</SaveFormat> option is
|
|
2093
2109
|
used when extracting.
|
|
2094
2110
|
|
|
2095
|
-
Family 7 is used for tag ID's. The group names are
|
|
2096
|
-
|
|
2097
|
-
tag ID's are
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
[-_A-Za-z0-9]
|
|
2101
|
-
|
|
2111
|
+
Family 7 is used for tag ID's. The group names are the actual tag ID's,
|
|
2112
|
+
with a leading "ID-" string. Non-numerical ID's have characters other than
|
|
2113
|
+
[-_A-Za-z0-9] converted to hex. Numerical tag ID's are returned in hex if
|
|
2114
|
+
the L</HexTagIDs> option is set, otherwise decimal is used. When specifying
|
|
2115
|
+
a family 7 group name, numerical ID's may be in hex or decimal, and
|
|
2116
|
+
non-numerical ID's may or may not have characters other than [-_A-Za-z0-9]
|
|
2117
|
+
converted to hex. Note that unlike other group names, the tag ID's of
|
|
2118
|
+
family 7 group names are case sensitive (but the leading "ID-" is not).
|
|
2102
2119
|
|
|
2103
2120
|
See L</GetAllGroups [static]> for complete lists of group names.
|
|
2104
2121
|
|
|
@@ -2255,7 +2272,7 @@ Get list of all group names in specified family.
|
|
|
2255
2272
|
|
|
2256
2273
|
=item Inputs:
|
|
2257
2274
|
|
|
2258
|
-
0) Group family number (0-
|
|
2275
|
+
0) Group family number (0-7)
|
|
2259
2276
|
|
|
2260
2277
|
=item Return Values:
|
|
2261
2278
|
|
|
@@ -2269,30 +2286,30 @@ Here is a complete list of groups for each of these families:
|
|
|
2269
2286
|
|
|
2270
2287
|
=item Family 0 (Information Type):
|
|
2271
2288
|
|
|
2272
|
-
AFCP, AIFF, APE, APP0, APP1, APP11, APP12, APP13, APP14, APP15,
|
|
2273
|
-
APP6, APP8, ASF, Audible, CanonVRD, Composite, DICOM, DNG, DV, DjVu,
|
|
2274
|
-
EXE, EXIF, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
|
|
2289
|
+
AFCP, AIFF, APE, APP0, APP1, APP11, APP12, APP13, APP14, APP15, APP3, APP4,
|
|
2290
|
+
APP5, APP6, APP8, ASF, Audible, CanonVRD, Composite, DICOM, DNG, DV, DjVu,
|
|
2291
|
+
Ducky, EXE, EXIF, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
|
|
2275
2292
|
FotoStation, GIF, GIMP, GeoTiff, GoPro, H264, HTML, ICC_Profile, ID3, IPTC,
|
|
2276
|
-
ISO, ITC, JFIF, JPEG, JSON, Jpeg2000, LNK, Leaf, Lytro, M2TS, MIE,
|
|
2277
|
-
MNG, MOI, MPC, MPEG, MPF, MXF, MakerNotes, Matroska, Meta, Ogg,
|
|
2278
|
-
Opus, PDF, PICT, PLIST, PNG, PSP, Palm, Parrot, PanasonicRaw,
|
|
2279
|
-
PhotoMechanic, Photoshop, PostScript, PrintIM, QuickTime, RAF,
|
|
2280
|
-
RTF, Radiance, Rawzor, Real, Red, SVG, SigmaRaw, Stim, Theora,
|
|
2281
|
-
Trailer, UserParam, VCard, Vorbis, WTV, XML, XMP, ZIP
|
|
2293
|
+
ISO, ITC, JFIF, JPEG, JSON, JUMBF, Jpeg2000, LNK, Leaf, Lytro, M2TS, MIE,
|
|
2294
|
+
MIFF, MNG, MOI, MPC, MPEG, MPF, MXF, MakerNotes, Matroska, Meta, Ogg,
|
|
2295
|
+
OpenEXR, Opus, PDF, PICT, PLIST, PNG, PSP, Palm, Parrot, PanasonicRaw,
|
|
2296
|
+
PhotoCD, PhotoMechanic, Photoshop, PostScript, PrintIM, QuickTime, RAF,
|
|
2297
|
+
RIFF, RSRC, RTF, Radiance, Rawzor, Real, Red, SVG, SigmaRaw, Stim, Theora,
|
|
2298
|
+
Torrent, Trailer, UserParam, VCard, Vorbis, WTV, XML, XMP, ZIP
|
|
2282
2299
|
|
|
2283
2300
|
=item Family 1 (Specific Location):
|
|
2284
2301
|
|
|
2285
2302
|
AC3, AFCP, AIFF, APE, ASF, AVI1, Adobe, AdobeCM, AdobeDNG, Apple, Audible,
|
|
2286
|
-
CIFF, CameraIFD, Canon, CanonCustom, CanonRaw, CanonVRD, Casio,
|
|
2287
|
-
Composite, DICOM, DJI, DNG, DV, DjVu, DjVu-Meta, Ducky, EPPIM,
|
|
2288
|
-
ExifIFD, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
|
|
2303
|
+
CBOR, CIFF, CameraIFD, Canon, CanonCustom, CanonRaw, CanonVRD, Casio,
|
|
2304
|
+
Chapter#, Composite, DICOM, DJI, DNG, DV, DjVu, DjVu-Meta, Ducky, EPPIM,
|
|
2305
|
+
EXE, EXIF, ExifIFD, ExifTool, FITS, FLAC, FLIR, File, Flash, FlashPix, Font,
|
|
2289
2306
|
FotoStation, FujiFilm, FujiIFD, GE, GIF, GIMP, GPS, GeoTiff, GlobParamIFD,
|
|
2290
2307
|
GoPro, GraphConv, H264, HP, HTC, HTML, HTML-dc, HTML-ncc, HTML-office,
|
|
2291
2308
|
HTML-prod, HTML-vw96, HTTP-equiv, ICC-chrm, ICC-clrt, ICC-header, ICC-meas,
|
|
2292
2309
|
ICC-meta, ICC-view, ICC_Profile, ICC_Profile#, ID3, ID3v1, ID3v1_Enh,
|
|
2293
2310
|
ID3v2_2, ID3v2_3, ID3v2_4, IFD0, IFD1, IPTC, IPTC#, ISO, ITC, Insta360,
|
|
2294
|
-
InteropIFD, ItemList, JFIF, JFXX, JPEG, JPEG-HDR, JSON,
|
|
2295
|
-
KDC_IFD, Keys, Kodak, KodakBordersIFD, KodakEffectsIFD, KodakIFD,
|
|
2311
|
+
InteropIFD, ItemList, JFIF, JFXX, JPEG, JPEG-HDR, JPS, JSON, JUMBF, JVC,
|
|
2312
|
+
Jpeg2000, KDC_IFD, Keys, Kodak, KodakBordersIFD, KodakEffectsIFD, KodakIFD,
|
|
2296
2313
|
KyoceraRaw, LNK, Leaf, LeafSubIFD, Leica, Lyrics3, Lytro, M2TS, MAC,
|
|
2297
2314
|
MIE-Audio, MIE-Camera, MIE-Canon, MIE-Doc, MIE-Extender, MIE-Flash, MIE-GPS,
|
|
2298
2315
|
MIE-Geo, MIE-Image, MIE-Lens, MIE-Main, MIE-MakerNotes, MIE-Meta,
|
|
@@ -2318,7 +2335,7 @@ XMP-iptcCore, XMP-iptcExt, XMP-lr, XMP-mediapro, XMP-microsoft,
|
|
|
2318
2335
|
XMP-mwg-coll, XMP-mwg-kw, XMP-mwg-rs, XMP-pdf, XMP-pdfx, XMP-photomech,
|
|
2319
2336
|
XMP-photoshop, XMP-plus, XMP-pmi, XMP-prism, XMP-prl, XMP-prm, XMP-pur,
|
|
2320
2337
|
XMP-rdf, XMP-swf, XMP-tiff, XMP-x, XMP-xmp, XMP-xmpBJ, XMP-xmpDM, XMP-xmpMM,
|
|
2321
|
-
XMP-xmpNote, XMP-xmpPLUS, XMP-xmpRights, XMP-xmpTPg, ZIP
|
|
2338
|
+
XMP-xmpNote, XMP-xmpPLUS, XMP-xmpRights, XMP-xmpTPg, ZIP, iTunes
|
|
2322
2339
|
|
|
2323
2340
|
=item Family 2 (Category):
|
|
2324
2341
|
|
|
@@ -2344,12 +2361,16 @@ rational64s, float, double, ifd, unicode, complex, int64u, int64s, ifd64
|
|
|
2344
2361
|
|
|
2345
2362
|
=item Family 7 (Tag ID):
|
|
2346
2363
|
|
|
2347
|
-
ID-xxx (
|
|
2348
|
-
leading "0x" if the HexTagIDs option is set,
|
|
2349
|
-
non-numerical ID's which are not valid in a group name
|
|
2364
|
+
ID-xxx (Where xxx is the tag ID. Numerical ID's are returned in hex with a
|
|
2365
|
+
leading "0x" if the HexTagIDs option is set, or decimal otherwise.
|
|
2366
|
+
Characters in non-numerical ID's which are not valid in a group name are
|
|
2367
|
+
returned as 2 hex digits.)
|
|
2350
2368
|
|
|
2351
2369
|
=back
|
|
2352
2370
|
|
|
2371
|
+
Note: This function may also be called as an ExifTool member function to
|
|
2372
|
+
allow the HexTagIDs option to be set when retrieving family 7 group names.
|
|
2373
|
+
|
|
2353
2374
|
=head2 GetDeleteGroups [static]
|
|
2354
2375
|
|
|
2355
2376
|
Get list of all deletable group names.
|
|
@@ -2367,14 +2388,14 @@ None.
|
|
|
2367
2388
|
A list of deletable group names in alphabetical order. The current list of
|
|
2368
2389
|
deletable group names is:
|
|
2369
2390
|
|
|
2370
|
-
AFCP, APP0, APP1, APP10, APP11, APP12, APP13, APP14, APP15, APP2,
|
|
2371
|
-
APP4, APP5, APP6, APP7, APP8, APP9,
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
NikonCapture, Other, PDF, PDF-update,
|
|
2376
|
-
Photoshop,
|
|
2377
|
-
Video, XML, XML-*, XMP, XMP-*
|
|
2391
|
+
Adobe, AFCP, APP0, APP1, APP10, APP11, APP12, APP13, APP14, APP15, APP2,
|
|
2392
|
+
APP3, APP4, APP5, APP6, APP7, APP8, APP9, Audio, Author, Camera, CanonVRD,
|
|
2393
|
+
CIFF, Document, Ducky, EXIF, ExifIFD, ExifTool, File, FlashPix, FotoStation,
|
|
2394
|
+
GlobParamIFD, GPS, ICC_Profile, IFD0, IFD1, Image, Insta360, InteropIFD,
|
|
2395
|
+
IPTC, ItemList, JFIF, Jpeg2000, Keys, Location, MakerNotes, Meta, MetaIFD,
|
|
2396
|
+
Microsoft, MIE, MPF, NikonCapture, Other, PDF, PDF-update, PhotoMechanic,
|
|
2397
|
+
Photoshop, PNG, PNG-pHYs, Preview, PrintIM, Printing, QuickTime, RMETA,
|
|
2398
|
+
RSRC, SubIFD, Time, Trailer, UserData, Video, XML, XML-*, XMP, XMP-*
|
|
2378
2399
|
|
|
2379
2400
|
To schedule a group for deletion, call L</SetNewValue> with a tag name like
|
|
2380
2401
|
'EXIF:*' and an undefined tag value.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Summary: perl module for image data extraction
|
|
2
2
|
Name: perl-Image-ExifTool
|
|
3
|
-
Version: 12.
|
|
3
|
+
Version: 12.32
|
|
4
4
|
Release: 1
|
|
5
5
|
License: Artistic/GPL
|
|
6
6
|
Group: Development/Libraries/Perl
|
|
@@ -22,47 +22,48 @@ supported by ExifTool (r = read, w = write, c = create):
|
|
|
22
22
|
|
|
23
23
|
File Types
|
|
24
24
|
------------+-------------+-------------+-------------+------------
|
|
25
|
-
360 r/w |
|
|
26
|
-
3FR r |
|
|
27
|
-
3G2 r/w |
|
|
28
|
-
3GP r/w |
|
|
29
|
-
A r |
|
|
30
|
-
AA r |
|
|
31
|
-
AAE r |
|
|
32
|
-
AAX r/w |
|
|
33
|
-
ACR r |
|
|
34
|
-
AFM r |
|
|
35
|
-
AI r/w |
|
|
36
|
-
AIFF r |
|
|
37
|
-
APE r |
|
|
38
|
-
ARQ r/w |
|
|
39
|
-
ARW r/w |
|
|
40
|
-
ASF r |
|
|
41
|
-
AVI r |
|
|
42
|
-
AVIF r/w |
|
|
43
|
-
AZW r |
|
|
44
|
-
BMP r |
|
|
45
|
-
BPG r |
|
|
46
|
-
BTF r |
|
|
47
|
-
CHM r |
|
|
48
|
-
COS r |
|
|
49
|
-
CR2 r/w |
|
|
50
|
-
CR3 r/w |
|
|
51
|
-
CRM r/w |
|
|
52
|
-
CRW r/w |
|
|
53
|
-
CS1 r/w |
|
|
54
|
-
CSV r |
|
|
55
|
-
CZI r |
|
|
56
|
-
DCM r |
|
|
57
|
-
DCP r/w |
|
|
58
|
-
DCR r |
|
|
59
|
-
DFONT r |
|
|
60
|
-
DIVX r |
|
|
61
|
-
DJVU r |
|
|
62
|
-
DLL r |
|
|
63
|
-
DNG r/w |
|
|
64
|
-
DOC r |
|
|
65
|
-
DOCX r |
|
|
25
|
+
360 r/w | DR4 r/w/c | JNG r/w | ODP r | RIFF r
|
|
26
|
+
3FR r | DSS r | JP2 r/w | ODS r | RSRC r
|
|
27
|
+
3G2 r/w | DV r | JPEG r/w | ODT r | RTF r
|
|
28
|
+
3GP r/w | DVB r/w | JSON r | OFR r | RW2 r/w
|
|
29
|
+
A r | DVR-MS r | JXL r | OGG r | RWL r/w
|
|
30
|
+
AA r | DYLIB r | K25 r | OGV r | RWZ r
|
|
31
|
+
AAE r | EIP r | KDC r | ONP r | RM r
|
|
32
|
+
AAX r/w | EPS r/w | KEY r | OPUS r | SEQ r
|
|
33
|
+
ACR r | EPUB r | LA r | ORF r/w | SKETCH r
|
|
34
|
+
AFM r | ERF r/w | LFP r | ORI r/w | SO r
|
|
35
|
+
AI r/w | EXE r | LIF r | OTF r | SR2 r/w
|
|
36
|
+
AIFF r | EXIF r/w/c | LNK r | PAC r | SRF r
|
|
37
|
+
APE r | EXR r | LRV r/w | PAGES r | SRW r/w
|
|
38
|
+
ARQ r/w | EXV r/w/c | M2TS r | PBM r/w | SVG r
|
|
39
|
+
ARW r/w | F4A/V r/w | M4A/V r/w | PCD r | SWF r
|
|
40
|
+
ASF r | FFF r/w | MACOS r | PCX r | THM r/w
|
|
41
|
+
AVI r | FITS r | MAX r | PDB r | TIFF r/w
|
|
42
|
+
AVIF r/w | FLA r | MEF r/w | PDF r/w | TORRENT r
|
|
43
|
+
AZW r | FLAC r | MIE r/w/ | PEF r/w | TTC r
|
|
44
|
+
BMP r | FLIF r/w | MIFF r c | PFA r | TTF r
|
|
45
|
+
BPG r | FLV r | MKA r | PFB r | TXT r
|
|
46
|
+
BTF r | FPF r | MKS r | PFM r | VCF r
|
|
47
|
+
CHM r | FPX r | MKV r | PGF r | VRD r/w/c
|
|
48
|
+
COS r | GIF r/w | MNG r/w | PGM r/w | VSD r
|
|
49
|
+
CR2 r/w | GPR r/w | MOBI r | PLIST r | WAV r
|
|
50
|
+
CR3 r/w | GZ r | MODD r | PICT r | WDP r/w
|
|
51
|
+
CRM r/w | HDP r/w | MOI r | PMP r | WEBP r
|
|
52
|
+
CRW r/w | HDR r | MOS r/w | PNG r/w | WEBM r
|
|
53
|
+
CS1 r/w | HEIC r/w | MOV r/w | PPM r/w | WMA r
|
|
54
|
+
CSV r | HEIF r/w | MP3 r | PPT r | WMV r
|
|
55
|
+
CZI r | HTML r | MP4 r/w | PPTX r | WTV r
|
|
56
|
+
DCM r | ICC r/w/c | MPC r | PS r/w | WV r
|
|
57
|
+
DCP r/w | ICS r | MPG r | PSB r/w | X3F r/w
|
|
58
|
+
DCR r | IDML r | MPO r/w | PSD r/w | XCF r
|
|
59
|
+
DFONT r | IIQ r/w | MQV r/w | PSP r | XLS r
|
|
60
|
+
DIVX r | IND r/w | MRC r | QTIF r/w | XLSX r
|
|
61
|
+
DJVU r | INSP r/w | MRW r/w | R3D r | XMP r/w/c
|
|
62
|
+
DLL r | INSV r | MXF r | RA r | ZIP r
|
|
63
|
+
DNG r/w | INX r | NEF r/w | RAF r/w |
|
|
64
|
+
DOC r | ISO r | NRW r/w | RAM r |
|
|
65
|
+
DOCX r | ITC r | NUMBERS r | RAR r |
|
|
66
|
+
DPX r | J2C r | O r | RAW r/w |
|
|
66
67
|
|
|
67
68
|
Meta Information
|
|
68
69
|
----------------------+----------------------+---------------------
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exiftool_vendored
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 12.
|
|
4
|
+
version: 12.32.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew McEachen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-
|
|
12
|
+
date: 2021-10-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: exiftool
|
|
@@ -155,16 +155,16 @@ dependencies:
|
|
|
155
155
|
name: simplecov
|
|
156
156
|
requirement: !ruby/object:Gem::Requirement
|
|
157
157
|
requirements:
|
|
158
|
-
- - "
|
|
158
|
+
- - ">="
|
|
159
159
|
- !ruby/object:Gem::Version
|
|
160
|
-
version: 0
|
|
160
|
+
version: '0'
|
|
161
161
|
type: :development
|
|
162
162
|
prerelease: false
|
|
163
163
|
version_requirements: !ruby/object:Gem::Requirement
|
|
164
164
|
requirements:
|
|
165
|
-
- - "
|
|
165
|
+
- - ">="
|
|
166
166
|
- !ruby/object:Gem::Version
|
|
167
|
-
version: 0
|
|
167
|
+
version: '0'
|
|
168
168
|
- !ruby/object:Gem::Dependency
|
|
169
169
|
name: simplecov-console
|
|
170
170
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -179,6 +179,20 @@ dependencies:
|
|
|
179
179
|
- - ">="
|
|
180
180
|
- !ruby/object:Gem::Version
|
|
181
181
|
version: '0'
|
|
182
|
+
- !ruby/object:Gem::Dependency
|
|
183
|
+
name: simplecov_json_formatter
|
|
184
|
+
requirement: !ruby/object:Gem::Requirement
|
|
185
|
+
requirements:
|
|
186
|
+
- - ">="
|
|
187
|
+
- !ruby/object:Gem::Version
|
|
188
|
+
version: '0'
|
|
189
|
+
type: :development
|
|
190
|
+
prerelease: false
|
|
191
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
192
|
+
requirements:
|
|
193
|
+
- - ">="
|
|
194
|
+
- !ruby/object:Gem::Version
|
|
195
|
+
version: '0'
|
|
182
196
|
- !ruby/object:Gem::Dependency
|
|
183
197
|
name: yard
|
|
184
198
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -222,6 +236,7 @@ files:
|
|
|
222
236
|
- bin/config_files/age.config
|
|
223
237
|
- bin/config_files/bibble.config
|
|
224
238
|
- bin/config_files/convert_regions.config
|
|
239
|
+
- bin/config_files/cuepointlist.config
|
|
225
240
|
- bin/config_files/depthmap.config
|
|
226
241
|
- bin/config_files/example.config
|
|
227
242
|
- bin/config_files/fotoware.config
|
|
@@ -255,6 +270,7 @@ files:
|
|
|
255
270
|
- bin/lib/Image/ExifTool/BZZ.pm
|
|
256
271
|
- bin/lib/Image/ExifTool/BigTIFF.pm
|
|
257
272
|
- bin/lib/Image/ExifTool/BuildTagLookup.pm
|
|
273
|
+
- bin/lib/Image/ExifTool/CBOR.pm
|
|
258
274
|
- bin/lib/Image/ExifTool/Canon.pm
|
|
259
275
|
- bin/lib/Image/ExifTool/CanonCustom.pm
|
|
260
276
|
- bin/lib/Image/ExifTool/CanonRaw.pm
|
|
@@ -339,6 +355,7 @@ files:
|
|
|
339
355
|
- bin/lib/Image/ExifTool/Jpeg2000.pm
|
|
340
356
|
- bin/lib/Image/ExifTool/Kodak.pm
|
|
341
357
|
- bin/lib/Image/ExifTool/KyoceraRaw.pm
|
|
358
|
+
- bin/lib/Image/ExifTool/LIF.pm
|
|
342
359
|
- bin/lib/Image/ExifTool/LNK.pm
|
|
343
360
|
- bin/lib/Image/ExifTool/Lang/cs.pm
|
|
344
361
|
- bin/lib/Image/ExifTool/Lang/de.pm
|
|
@@ -368,6 +385,7 @@ files:
|
|
|
368
385
|
- bin/lib/Image/ExifTool/MPC.pm
|
|
369
386
|
- bin/lib/Image/ExifTool/MPEG.pm
|
|
370
387
|
- bin/lib/Image/ExifTool/MPF.pm
|
|
388
|
+
- bin/lib/Image/ExifTool/MRC.pm
|
|
371
389
|
- bin/lib/Image/ExifTool/MWG.pm
|
|
372
390
|
- bin/lib/Image/ExifTool/MXF.pm
|
|
373
391
|
- bin/lib/Image/ExifTool/MacOS.pm
|
|
@@ -387,6 +405,7 @@ files:
|
|
|
387
405
|
- bin/lib/Image/ExifTool/Olympus.pm
|
|
388
406
|
- bin/lib/Image/ExifTool/OpenEXR.pm
|
|
389
407
|
- bin/lib/Image/ExifTool/Opus.pm
|
|
408
|
+
- bin/lib/Image/ExifTool/Other.pm
|
|
390
409
|
- bin/lib/Image/ExifTool/PCX.pm
|
|
391
410
|
- bin/lib/Image/ExifTool/PDF.pm
|
|
392
411
|
- bin/lib/Image/ExifTool/PGF.pm
|
|
@@ -465,11 +484,7 @@ homepage: https://github.com/exiftool-rb/exiftool_vendored.rb
|
|
|
465
484
|
licenses:
|
|
466
485
|
- MIT
|
|
467
486
|
metadata: {}
|
|
468
|
-
post_install_message:
|
|
469
|
-
\ ***********************\n\n Starting March 31, 2021 releases of `exiftool_vendored`
|
|
470
|
-
Gem will no longer support following\n Ruby Versions due to their End Of Life
|
|
471
|
-
(https://www.ruby-lang.org/en/downloads/branches/)\n - Ruby 2.4 (EOL 2020-03-31)\n
|
|
472
|
-
\ - Ruby 2.5 (EOL 2021-03-31)\n "
|
|
487
|
+
post_install_message:
|
|
473
488
|
rdoc_options: []
|
|
474
489
|
require_paths:
|
|
475
490
|
- lib
|
|
@@ -477,14 +492,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
477
492
|
requirements:
|
|
478
493
|
- - ">="
|
|
479
494
|
- !ruby/object:Gem::Version
|
|
480
|
-
version: '2.
|
|
495
|
+
version: '2.6'
|
|
481
496
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
482
497
|
requirements:
|
|
483
498
|
- - ">="
|
|
484
499
|
- !ruby/object:Gem::Version
|
|
485
500
|
version: '0'
|
|
486
501
|
requirements: []
|
|
487
|
-
rubygems_version: 3.1.
|
|
502
|
+
rubygems_version: 3.1.6
|
|
488
503
|
signing_key:
|
|
489
504
|
specification_version: 4
|
|
490
505
|
summary: Vendored version of exiftool
|