exiftool-vendored.exe 12.82.0 → 12.84.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.
Files changed (270) hide show
  1. package/README.md +6 -0
  2. package/bin/exiftool.exe +0 -0
  3. package/bin/exiftool_files/Changes +37 -0
  4. package/bin/exiftool_files/Licenses_Strawberry_Perl.zip +0 -0
  5. package/bin/exiftool_files/README +3 -2
  6. package/bin/exiftool_files/build_geolocation +872 -0
  7. package/bin/exiftool_files/config_files/example.config +2 -2
  8. package/bin/exiftool_files/exiftool.pl +28 -6
  9. package/bin/exiftool_files/fmt_files/gpx.fmt +2 -1
  10. package/bin/exiftool_files/fmt_files/gpx_wpt.fmt +2 -1
  11. package/bin/exiftool_files/lib/Archive/Zip/Archive.pm +399 -65
  12. package/bin/exiftool_files/lib/Archive/Zip/DirectoryMember.pm +1 -1
  13. package/bin/exiftool_files/lib/Archive/Zip/FileMember.pm +1 -1
  14. package/bin/exiftool_files/lib/Archive/Zip/Member.pm +499 -195
  15. package/bin/exiftool_files/lib/Archive/Zip/NewFileMember.pm +1 -1
  16. package/bin/exiftool_files/lib/Archive/Zip/StringMember.pm +2 -2
  17. package/bin/exiftool_files/lib/Archive/Zip/ZipFileMember.pm +79 -20
  18. package/bin/exiftool_files/lib/Archive/Zip.pm +179 -29
  19. package/bin/exiftool_files/lib/AutoLoader.pm +453 -0
  20. package/bin/exiftool_files/lib/B/Deparse.pm +209 -137
  21. package/bin/exiftool_files/lib/B.pm +1 -1
  22. package/bin/exiftool_files/lib/Benchmark.pm +1123 -0
  23. package/bin/exiftool_files/lib/Class/Struct.pm +2 -2
  24. package/bin/exiftool_files/lib/Compress/Raw/Bzip2.pm +14 -9
  25. package/bin/exiftool_files/lib/Compress/Raw/Lzma.pm +982 -0
  26. package/bin/exiftool_files/lib/Compress/Raw/Zlib.pm +91 -86
  27. package/bin/exiftool_files/lib/Compress/Zlib.pm +105 -100
  28. package/bin/exiftool_files/lib/Config.pm +9 -9
  29. package/bin/exiftool_files/lib/Config_heavy.pl +36 -33
  30. package/bin/exiftool_files/lib/CryptX.pm +2 -82
  31. package/bin/exiftool_files/lib/Data/Dumper.pm +2 -2
  32. package/bin/exiftool_files/lib/Digest/MD5.pm +12 -9
  33. package/bin/exiftool_files/lib/Digest/Perl/MD5.pm +1 -191
  34. package/bin/exiftool_files/lib/Digest/base.pm +26 -20
  35. package/bin/exiftool_files/lib/DynaLoader.pm +7 -4
  36. package/bin/exiftool_files/lib/Encode.pm +3 -3
  37. package/bin/exiftool_files/lib/Errno.pm +13 -13
  38. package/bin/exiftool_files/lib/Exporter/Heavy.pm +2 -2
  39. package/bin/exiftool_files/lib/Exporter.pm +1 -1
  40. package/bin/exiftool_files/lib/ExtUtils/Command/MM.pm +323 -0
  41. package/bin/exiftool_files/lib/ExtUtils/Command.pm +382 -0
  42. package/bin/exiftool_files/lib/File/Find.pm +1 -1
  43. package/bin/exiftool_files/lib/File/Glob.pm +1 -8
  44. package/bin/exiftool_files/lib/File/GlobMapper.pm +2 -2
  45. package/bin/exiftool_files/lib/File/HomeDir/Darwin/Carbon.pm +2 -40
  46. package/bin/exiftool_files/lib/File/HomeDir/Darwin/Cocoa.pm +2 -34
  47. package/bin/exiftool_files/lib/File/HomeDir/Darwin.pm +2 -28
  48. package/bin/exiftool_files/lib/File/HomeDir/Driver.pm +2 -35
  49. package/bin/exiftool_files/lib/File/HomeDir/FreeDesktop.pm +2 -62
  50. package/bin/exiftool_files/lib/File/HomeDir/MacOS9.pm +2 -53
  51. package/bin/exiftool_files/lib/File/HomeDir/Test.pm +2 -43
  52. package/bin/exiftool_files/lib/File/HomeDir/Unix.pm +2 -53
  53. package/bin/exiftool_files/lib/File/HomeDir/Windows.pm +2 -69
  54. package/bin/exiftool_files/lib/File/HomeDir.pm +5 -416
  55. package/bin/exiftool_files/lib/File/Path.pm +3 -3
  56. package/bin/exiftool_files/lib/File/Spec/Win32.pm +2 -2
  57. package/bin/exiftool_files/lib/File/Temp.pm +70 -35
  58. package/bin/exiftool_files/lib/File/Which.pm +1 -240
  59. package/bin/exiftool_files/lib/File/stat.pm +3 -2
  60. package/bin/exiftool_files/lib/IO/Compress/Adapter/Bzip2.pm +16 -17
  61. package/bin/exiftool_files/lib/IO/Compress/Adapter/Deflate.pm +19 -20
  62. package/bin/exiftool_files/lib/IO/Compress/Base/Common.pm +5 -5
  63. package/bin/exiftool_files/lib/IO/Compress/Base.pm +35 -26
  64. package/bin/exiftool_files/lib/IO/Compress/Brotli.pm +159 -0
  65. package/bin/exiftool_files/lib/IO/Compress/Bzip2.pm +50 -25
  66. package/bin/exiftool_files/lib/IO/Compress/Gzip/Constants.pm +6 -6
  67. package/bin/exiftool_files/lib/IO/Compress/Gzip.pm +58 -32
  68. package/bin/exiftool_files/lib/IO/Compress/RawDeflate.pm +63 -38
  69. package/bin/exiftool_files/lib/IO/Compress/Zlib/Extra.pm +20 -20
  70. package/bin/exiftool_files/lib/IO/Dir.pm +1 -1
  71. package/bin/exiftool_files/lib/IO/File.pm +1 -1
  72. package/bin/exiftool_files/lib/IO/Handle.pm +1 -21
  73. package/bin/exiftool_files/lib/IO/Pipe.pm +1 -1
  74. package/bin/exiftool_files/lib/IO/Seekable.pm +1 -1
  75. package/bin/exiftool_files/lib/IO/Select.pm +16 -2
  76. package/bin/exiftool_files/lib/IO/Socket/INET.pm +14 -9
  77. package/bin/exiftool_files/lib/IO/Socket/UNIX.pm +17 -1
  78. package/bin/exiftool_files/lib/IO/Socket.pm +474 -126
  79. package/bin/exiftool_files/lib/IO/String.pm +425 -0
  80. package/bin/exiftool_files/lib/IO/Uncompress/Adapter/Inflate.pm +13 -14
  81. package/bin/exiftool_files/lib/IO/Uncompress/Base.pm +142 -132
  82. package/bin/exiftool_files/lib/IO/Uncompress/Brotli.pm +119 -0
  83. package/bin/exiftool_files/lib/IO/Uncompress/Gunzip.pm +43 -37
  84. package/bin/exiftool_files/lib/IO/Uncompress/RawInflate.pm +49 -43
  85. package/bin/exiftool_files/lib/IO.pm +2 -2
  86. package/bin/exiftool_files/lib/Image/ExifTool/Apple.pm +51 -7
  87. package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +5 -2
  88. package/bin/exiftool_files/lib/Image/ExifTool/CanonVRD.pm +18 -5
  89. package/bin/exiftool_files/lib/Image/ExifTool/DJI.pm +29 -0
  90. package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +19 -2
  91. package/bin/exiftool_files/lib/Image/ExifTool/GM.pm +17 -8
  92. package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.dat +0 -0
  93. package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.pm +163 -101
  94. package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +18 -10
  95. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +7 -6
  96. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +6 -1
  97. package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +5 -0
  98. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +15 -6
  99. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +18 -9
  100. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +24 -5
  101. package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +2 -1
  102. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +165 -132
  103. package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +3 -0
  104. package/bin/exiftool_files/lib/Image/ExifTool.pm +45 -23
  105. package/bin/exiftool_files/lib/Image/ExifTool.pod +23 -14
  106. package/bin/exiftool_files/lib/List/Util.pm +97 -8
  107. package/bin/exiftool_files/lib/MIME/Base64.pm +5 -5
  108. package/bin/exiftool_files/lib/MIME/Charset/_Compat.pm +106 -0
  109. package/bin/exiftool_files/lib/MIME/Charset.pm +1303 -0
  110. package/bin/exiftool_files/lib/Math/BigFloat.pm +444 -27
  111. package/bin/exiftool_files/lib/Math/BigInt/Calc.pm +296 -313
  112. package/bin/exiftool_files/lib/Math/BigInt/FastCalc.pm +1 -1
  113. package/bin/exiftool_files/lib/Math/BigInt/GMP.pm +2 -115
  114. package/bin/exiftool_files/lib/Math/BigInt/LTM.pm +2 -24
  115. package/bin/exiftool_files/lib/Math/BigInt/Lib.pm +61 -32
  116. package/bin/exiftool_files/lib/Math/BigInt.pm +292 -107
  117. package/bin/exiftool_files/lib/POSIX.pm +1 -1
  118. package/bin/exiftool_files/lib/PerlIO/scalar.pm +41 -0
  119. package/bin/exiftool_files/lib/PerlIO.pm +397 -0
  120. package/bin/exiftool_files/lib/Portable/CPAN.pm +94 -94
  121. package/bin/exiftool_files/lib/Portable/Config.pm +94 -94
  122. package/bin/exiftool_files/lib/Portable/FileSpec.pm +180 -180
  123. package/bin/exiftool_files/lib/Portable/HomeDir.pm +110 -110
  124. package/bin/exiftool_files/lib/Portable/LoadYaml.pm +430 -430
  125. package/bin/exiftool_files/lib/Portable/minicpan.pm +55 -55
  126. package/bin/exiftool_files/lib/Portable.pm +246 -320
  127. package/bin/exiftool_files/lib/Scalar/Util.pm +9 -4
  128. package/bin/exiftool_files/lib/Socket.pm +16 -12
  129. package/bin/exiftool_files/lib/Storable.pm +1444 -1441
  130. package/bin/exiftool_files/lib/TAP/Base.pm +133 -0
  131. package/bin/exiftool_files/lib/TAP/Formatter/Base.pm +467 -0
  132. package/bin/exiftool_files/lib/TAP/Formatter/Color.pm +116 -0
  133. package/bin/exiftool_files/lib/TAP/Formatter/Console/ParallelSession.pm +201 -0
  134. package/bin/exiftool_files/lib/TAP/Formatter/Console/Session.pm +205 -0
  135. package/bin/exiftool_files/lib/TAP/Formatter/Console.pm +100 -0
  136. package/bin/exiftool_files/lib/TAP/Formatter/File/Session.pm +95 -0
  137. package/bin/exiftool_files/lib/TAP/Formatter/File.pm +56 -0
  138. package/bin/exiftool_files/lib/TAP/Formatter/Session.pm +220 -0
  139. package/bin/exiftool_files/lib/TAP/Harness/Beyond.pod +426 -0
  140. package/bin/exiftool_files/lib/TAP/Harness/Env.pm +215 -0
  141. package/bin/exiftool_files/lib/TAP/Harness.pm +1054 -0
  142. package/bin/exiftool_files/lib/TAP/Object.pm +155 -0
  143. package/bin/exiftool_files/lib/TAP/Parser/Aggregator.pm +414 -0
  144. package/bin/exiftool_files/lib/TAP/Parser/Grammar.pm +584 -0
  145. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Array.pm +100 -0
  146. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Process.pm +378 -0
  147. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Stream.pm +116 -0
  148. package/bin/exiftool_files/lib/TAP/Parser/Iterator.pm +162 -0
  149. package/bin/exiftool_files/lib/TAP/Parser/IteratorFactory.pm +339 -0
  150. package/bin/exiftool_files/lib/TAP/Parser/Multiplexer.pm +194 -0
  151. package/bin/exiftool_files/lib/TAP/Parser/Result/Bailout.pm +62 -0
  152. package/bin/exiftool_files/lib/TAP/Parser/Result/Comment.pm +60 -0
  153. package/bin/exiftool_files/lib/TAP/Parser/Result/Plan.pm +119 -0
  154. package/bin/exiftool_files/lib/TAP/Parser/Result/Pragma.pm +62 -0
  155. package/bin/exiftool_files/lib/TAP/Parser/Result/Test.pm +271 -0
  156. package/bin/exiftool_files/lib/TAP/Parser/Result/Unknown.pm +48 -0
  157. package/bin/exiftool_files/lib/TAP/Parser/Result/Version.pm +62 -0
  158. package/bin/exiftool_files/lib/TAP/Parser/Result/YAML.pm +61 -0
  159. package/bin/exiftool_files/lib/TAP/Parser/Result.pm +297 -0
  160. package/bin/exiftool_files/lib/TAP/Parser/ResultFactory.pm +183 -0
  161. package/bin/exiftool_files/lib/TAP/Parser/Scheduler/Job.pm +127 -0
  162. package/bin/exiftool_files/lib/TAP/Parser/Scheduler/Spinner.pm +61 -0
  163. package/bin/exiftool_files/lib/TAP/Parser/Scheduler.pm +448 -0
  164. package/bin/exiftool_files/lib/TAP/Parser/Source.pm +381 -0
  165. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Executable.pm +184 -0
  166. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/File.pm +136 -0
  167. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Handle.pm +124 -0
  168. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Perl.pm +370 -0
  169. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/RawTAP.pm +130 -0
  170. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler.pm +191 -0
  171. package/bin/exiftool_files/lib/TAP/Parser/YAMLish/Reader.pm +332 -0
  172. package/bin/exiftool_files/lib/TAP/Parser/YAMLish/Writer.pm +254 -0
  173. package/bin/exiftool_files/lib/TAP/Parser.pm +1931 -0
  174. package/bin/exiftool_files/lib/Test/Builder/Formatter.pm +107 -0
  175. package/bin/exiftool_files/lib/Test/Builder/IO/Scalar.pm +659 -0
  176. package/bin/exiftool_files/lib/Test/Builder/Module.pm +182 -0
  177. package/bin/exiftool_files/lib/Test/Builder/Tester/Color.pm +51 -0
  178. package/bin/exiftool_files/lib/Test/Builder/Tester.pm +675 -0
  179. package/bin/exiftool_files/lib/Test/Builder/TodoDiag.pm +68 -0
  180. package/bin/exiftool_files/lib/Test/Builder.pm +2653 -0
  181. package/bin/exiftool_files/lib/Test/Harness.pm +618 -0
  182. package/bin/exiftool_files/lib/Test/More.pm +1997 -0
  183. package/bin/exiftool_files/lib/Test/Simple.pm +220 -0
  184. package/bin/exiftool_files/lib/Test/Tester/Capture.pm +241 -0
  185. package/bin/exiftool_files/lib/Test/Tester/CaptureRunner.pm +79 -0
  186. package/bin/exiftool_files/lib/Test/Tester/Delegate.pm +45 -0
  187. package/bin/exiftool_files/lib/Test/Tester.pm +695 -0
  188. package/bin/exiftool_files/lib/Test/Tutorial.pod +618 -0
  189. package/bin/exiftool_files/lib/Test/use/ok.pm +64 -0
  190. package/bin/exiftool_files/lib/Text/ParseWords.pm +303 -0
  191. package/bin/exiftool_files/lib/Tie/StdHandle.pm +2 -2
  192. package/bin/exiftool_files/lib/Time/HiRes.pm +73 -68
  193. package/bin/exiftool_files/lib/Time/Local.pm +82 -35
  194. package/bin/exiftool_files/lib/Time/Piece.pm +19 -4
  195. package/bin/exiftool_files/lib/Time/Seconds.pm +1 -1
  196. package/bin/exiftool_files/lib/UNIVERSAL.pm +203 -0
  197. package/bin/exiftool_files/lib/Unicode/GCString.pm +60 -0
  198. package/bin/exiftool_files/lib/Unicode/LineBreak/Constants.pm +68 -0
  199. package/bin/exiftool_files/lib/Unicode/LineBreak.pm +248 -0
  200. package/bin/exiftool_files/lib/Win32/API/Struct.pm +1 -177
  201. package/bin/exiftool_files/lib/Win32/API/Type.pm +1 -100
  202. package/bin/exiftool_files/lib/Win32/API.pm +1 -830
  203. package/bin/exiftool_files/lib/Win32/FindFile.pm +2 -123
  204. package/bin/exiftool_files/lib/Win32.pm +213 -89
  205. package/bin/exiftool_files/lib/Win32API/File.pm +1 -1
  206. package/bin/exiftool_files/lib/auto/B/B.xs.dll +0 -0
  207. package/bin/exiftool_files/lib/auto/Compress/Raw/Bzip2/Bzip2.xs.dll +0 -0
  208. package/bin/exiftool_files/lib/auto/Compress/Raw/Lzma/Lzma.xs.dll +0 -0
  209. package/bin/exiftool_files/lib/auto/Compress/Raw/Lzma/autosplit.ix +3 -0
  210. package/bin/exiftool_files/lib/auto/Compress/Raw/Zlib/Zlib.xs.dll +0 -0
  211. package/bin/exiftool_files/lib/auto/CryptX/CryptX.xs.dll +0 -0
  212. package/bin/exiftool_files/lib/auto/Cwd/Cwd.xs.dll +0 -0
  213. package/bin/exiftool_files/lib/auto/Data/Dumper/Dumper.xs.dll +0 -0
  214. package/bin/exiftool_files/lib/auto/Digest/MD5/MD5.xs.dll +0 -0
  215. package/bin/exiftool_files/lib/auto/Digest/SHA/SHA.xs.dll +0 -0
  216. package/bin/exiftool_files/lib/auto/Encode/Encode.xs.dll +0 -0
  217. package/bin/exiftool_files/lib/auto/Fcntl/Fcntl.xs.dll +0 -0
  218. package/bin/exiftool_files/lib/auto/File/Glob/Glob.xs.dll +0 -0
  219. package/bin/exiftool_files/lib/auto/IO/Compress/Brotli/Brotli.xs.dll +0 -0
  220. package/bin/exiftool_files/lib/auto/IO/IO.xs.dll +0 -0
  221. package/bin/exiftool_files/lib/auto/List/Util/Util.xs.dll +0 -0
  222. package/bin/exiftool_files/lib/auto/MIME/Base64/Base64.xs.dll +0 -0
  223. package/bin/exiftool_files/lib/auto/Math/BigInt/FastCalc/FastCalc.xs.dll +0 -0
  224. package/bin/exiftool_files/lib/auto/Math/BigInt/GMP/GMP.xs.dll +0 -0
  225. package/bin/exiftool_files/lib/auto/POSIX/POSIX.xs.dll +0 -0
  226. package/bin/exiftool_files/lib/auto/PerlIO/scalar/scalar.xs.dll +0 -0
  227. package/bin/exiftool_files/lib/auto/Socket/Socket.xs.dll +0 -0
  228. package/bin/exiftool_files/lib/auto/Storable/Storable.xs.dll +0 -0
  229. package/bin/exiftool_files/lib/auto/Time/HiRes/HiRes.xs.dll +0 -0
  230. package/bin/exiftool_files/lib/auto/Time/Piece/Piece.xs.dll +0 -0
  231. package/bin/exiftool_files/lib/auto/Unicode/LineBreak/LineBreak.xs.dll +0 -0
  232. package/bin/exiftool_files/lib/auto/Win32/API/API.xs.dll +0 -0
  233. package/bin/exiftool_files/lib/auto/Win32/FindFile/FindFile.xs.dll +0 -0
  234. package/bin/exiftool_files/lib/auto/Win32/Win32.xs.dll +0 -0
  235. package/bin/exiftool_files/lib/auto/Win32API/File/File.xs.dll +0 -0
  236. package/bin/exiftool_files/lib/auto/mro/mro.xs.dll +0 -0
  237. package/bin/exiftool_files/lib/auto/re/re.xs.dll +0 -0
  238. package/bin/exiftool_files/lib/feature.pm +49 -17
  239. package/bin/exiftool_files/lib/mro.pm +4 -20
  240. package/bin/exiftool_files/lib/overload.pm +15 -15
  241. package/bin/exiftool_files/lib/parent.pm +10 -2
  242. package/bin/exiftool_files/lib/re.pm +91 -33
  243. package/bin/exiftool_files/lib/warnings.pm +17 -6
  244. package/bin/exiftool_files/libgcc_s_seh-1.dll +0 -0
  245. package/bin/exiftool_files/liblzma-5__.dll +0 -0
  246. package/bin/exiftool_files/libstdc++-6.dll +0 -0
  247. package/bin/exiftool_files/libwinpthread-1.dll +0 -0
  248. package/bin/exiftool_files/perl.exe +0 -0
  249. package/bin/exiftool_files/perl532.dll +0 -0
  250. package/package.json +6 -4
  251. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/cs.pm +0 -978
  252. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/de.pm +0 -1975
  253. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/en_ca.pm +0 -44
  254. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/en_gb.pm +0 -124
  255. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/es.pm +0 -2921
  256. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/fi.pm +0 -1116
  257. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/fr.pm +0 -3171
  258. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/it.pm +0 -2750
  259. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/ja.pm +0 -10256
  260. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/ko.pm +0 -4499
  261. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/nl.pm +0 -1270
  262. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/pl.pm +0 -3019
  263. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/ru.pm +0 -18220
  264. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/sk.pm +0 -441
  265. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/sv.pm +0 -714
  266. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/tr.pm +0 -452
  267. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/zh_cn.pm +0 -2225
  268. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/zh_tw.pm +0 -72
  269. package/bin/exiftool_files/libgcc_s_dw2-1.dll +0 -0
  270. package/bin/exiftool_files/perl530.dll +0 -0
@@ -48,7 +48,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
48
48
  use Image::ExifTool::Exif;
49
49
  use Image::ExifTool::GPS;
50
50
 
51
- $VERSION = '2.95';
51
+ $VERSION = '2.96';
52
52
 
53
53
  sub ProcessMOV($$;$);
54
54
  sub ProcessKeys($$$);
@@ -1415,6 +1415,8 @@ my %isImageData = ( av01 => 1, avc1 => 1, hvc1 => 1, lhv1 => 1, hvt1 => 1 );
1415
1415
  %durationInfo,
1416
1416
  # this is int64u if MovieHeaderVersion == 1 (ref 13)
1417
1417
  Hook => '$$self{MovieHeaderVersion} and $format = "int64u", $varSize += 4',
1418
+ # (Note: this Duration seems to be the time of the key frame in
1419
+ # the NRT Metadata track of iPhone live-photo MOV videos)
1418
1420
  },
1419
1421
  5 => {
1420
1422
  Name => 'PreferredRate',
@@ -6494,6 +6496,9 @@ my %isImageData = ( av01 => 1, avc1 => 1, hvc1 => 1, lhv1 => 1, hvt1 => 1 );
6494
6496
  },
6495
6497
  ownr => 'Owner', #PH (obscure) (ref ChrisAdan private communication)
6496
6498
  'xid ' => 'ISRC', #PH
6499
+ # found in DJI Osmo Action4 video
6500
+ tnal => { Name => 'ThumbnailImage', Groups => { 2 => 'Preview' } },
6501
+ snal => { Name => 'PreviewImage', Groups => { 2 => 'Preview' } },
6497
6502
  );
6498
6503
 
6499
6504
  # tag decoded from timed face records
@@ -338,6 +338,9 @@ my %insvLimit = (
338
338
  Groups => { 2 => 'Preview' },
339
339
  RawConv => '$self->ValidateImage(\$val,$tag)',
340
340
  },
341
+ # djmd - DJI AC003 Osmo Action 4 cam
342
+ #TODO djmd => { SubDirectory => { TagTable => 'Image::ExifTool::DJI::djmd', ByteOrder => 'Little-Endian' } },
343
+ # dbgi - DJI AC003 Osmo Action 4 cam -- lots more unknown stuff
341
344
  Unknown00 => { Unknown => 1 },
342
345
  Unknown01 => { Unknown => 1 },
343
346
  Unknown02 => { Unknown => 1 },
@@ -2428,7 +2431,9 @@ sub Process_nbmt($$$)
2428
2431
  $$et{DOC_NUM} = $$et{DOC_COUNT} + 1;
2429
2432
  delete $$et{UnknownTextCount};
2430
2433
  delete $$et{NoMoreTextDecoding};
2434
+ $$et{SET_GROUP1} = 'Nextbase';
2431
2435
  Process_text($et, $dataPt, $tagTbl, 1);
2436
+ delete $$et{SET_GROUP1};
2432
2437
  delete $$et{UnknownTextCount};
2433
2438
  delete $$et{NoMoreTextDecoding};
2434
2439
  delete $$et{DOC_NUM};
@@ -34,7 +34,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
34
34
  use Image::ExifTool::Exif;
35
35
  use Image::ExifTool::Minolta;
36
36
 
37
- $VERSION = '3.67';
37
+ $VERSION = '3.68';
38
38
 
39
39
  sub ProcessSRF($$$);
40
40
  sub ProcessSR2($$$);
@@ -164,9 +164,11 @@ sub PrintInvLensSpec($;$$);
164
164
  32877 => 'Sony E 15mm F1.4 G', #JR
165
165
  32878 => 'Sony FE 20-70mm F4 G', #JR
166
166
  32879 => 'Sony FE 50mm F1.4 GM', #JR
167
+ 32881 => 'Sony FE 24-50mm F2.8 G', #JR
168
+ 32882 => 'Sony FE 16-25mm F2.8 G', #JR
167
169
  32884 => 'Sony FE 70-200mm F4 Macro G OSS II', #JR
168
170
  32885 => 'Sony FE 16-35mm F2.8 GM II', #JR
169
- 32886 => 'Sony FE 300mm F2.8 OSS', #JR
171
+ 32886 => 'Sony FE 300mm F2.8 GM OSS', #JR
170
172
 
171
173
  # (comment this out so LensID will report the LensModel, which is more useful)
172
174
  # 32952 => 'Metabones Canon EF Speed Booster Ultra', #JR (corresponds to 184, but 'Advanced' mode, LensMount reported as E-mount)
@@ -187,6 +189,8 @@ sub PrintInvLensSpec($;$$);
187
189
  33086 => 'Sony FE 70-200mm F2.8 GM OSS II + 2X Teleconverter', #JR
188
190
  33087 => 'Sony FE 70-200mm F4 Macro G OSS II + 1.4X Teleconverter', #JR
189
191
  33088 => 'Sony FE 70-200mm F4 Macro G OSS II + 2X Teleconverter', #JR
192
+ 33089 => 'Sony FE 300mm F2.8 GM OSS + 1.4X Teleconverter', #JR (NC)
193
+ 33090 => 'Sony FE 300mm F2.8 GM OSS + 2X Teleconverter', #JR
190
194
 
191
195
  49201 => 'Zeiss Touit 12mm F2.8', #JR (lens firmware Ver.02)
192
196
  49202 => 'Zeiss Touit 32mm F1.8', #JR (lens firmware Ver.02)
@@ -234,6 +238,7 @@ sub PrintInvLensSpec($;$$);
234
238
  49474.7 => 'Viltrox 35mm F1.8 FE', #JR
235
239
  49474.8 => 'Viltrox 50mm F1.8 FE', #JR
236
240
  49474.9 => 'Viltrox 75mm F1.2 E', #JR
241
+ '49474.10' => 'Viltrox 20mm F2.8 FE', #JR
237
242
 
238
243
  49712 => 'Tokina FiRIN 20mm F2 FE AF', # (firmware Ver.01)
239
244
  49713 => 'Tokina FiRIN 100mm F2.8 FE MACRO', # (firmware Ver.01)
@@ -287,7 +292,9 @@ sub PrintInvLensSpec($;$$);
287
292
  50540 => 'Sigma 14mm F1.4 DG DN | A', #JR (023)
288
293
  50543 => 'Sigma 70-200mm F2.8 DG DN OS | S', #JR (023)
289
294
  50544 => 'Sigma 23mm F1.4 DC DN | C', #JR (023)
295
+ 50546 => 'Sigma 500mm F5.6 DG DN OS | S', #JR (024)
290
296
  50547 => 'Sigma 10-18mm F2.8 DC DN | C', #JR (023)
297
+ 50548 => 'Sigma 15mm F1.4 DG DN DIAGONAL FISHEYE | A', #JR (024)
291
298
 
292
299
  50992 => 'Voigtlander SUPER WIDE-HELIAR 15mm F4.5 III', #JR
293
300
  50993 => 'Voigtlander HELIAR-HYPER WIDE 10mm F5.6', #IB
@@ -2031,6 +2038,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 );
2031
2038
  '4 0 0 0' => 'ARW 4.0', # (ILCE-7SM3)
2032
2039
  '4 0 1 0' => 'ARW 4.0.1', #github#195 (ZV-E1)
2033
2040
  '5 0 0 0' => 'ARW 5.0', # (ILCE-9M3)
2041
+ '5 0 1 0' => 'ARW 5.0.1', # (ILCE-1 with FirmWare 2.0)
2034
2042
  # what about cRAW images?
2035
2043
  },
2036
2044
  },
@@ -8515,16 +8523,17 @@ my %isoSetting2010 = (
8515
8523
  FIRST_ENTRY => 0,
8516
8524
  GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
8517
8525
  DATAMEMBER => [ 0 ],
8518
- IS_SUBDIR => [ 0x03e2, 0x03f4, 0x044e, 0x0498, 0x049d, 0x04a1, 0x04a2, 0x04ba, 0x059d, 0x0634, 0x0636, 0x064c, 0x0653, 0x0678, 0x06b8, 0x06de, 0x06e7 ],
8526
+ IS_SUBDIR => [ 0x03e2, 0x03f4, 0x044e, 0x0498, 0x049d, 0x049e, 0x04a1, 0x04a2, 0x04ba, 0x059d, 0x0634, 0x0636, 0x064c, 0x0653, 0x0678, 0x06b8, 0x06de, 0x06e7 ],
8519
8527
  0x0000 => { Name => 'Ver9401', Hidden => 1, RawConv => '$$self{Ver9401} = $val; $$self{OPTIONS}{Unknown}<2 ? undef : $val' },
8520
8528
 
8521
8529
  0x03e2 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 181', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8522
8530
  0x03f4 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 185', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8523
8531
  0x044e => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 178', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8524
8532
  0x0498 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 148', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8525
- 0x049d => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 167', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8526
- 0x04a1 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} =~ /^(160|164)/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8527
- 0x04a2 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} =~ /^(152|154|155)/ and $$self{Model} !~ /^ZV-1M2/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8533
+ 0x049d => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 167 and $$self{Software} !~ /^ILCE-7M4 (v2|v3)/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8534
+ 0x049e => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 167 and $$self{Software} =~ /^ILCE-7M4 (v2|v3)/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8535
+ 0x04a1 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} =~ /^(160|164)/ and $$self{Software} !~ /^ILCE-1 v2/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8536
+ 0x04a2 => { Name => 'ISOInfo', Condition => '($$self{Ver9401} =~ /^(152|154|155)/ and $$self{Model} !~ /^ZV-1M2/) or ($$self{Ver9401} == 164 and $$self{Software} =~ /^ILCE-1 v2/)', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8528
8537
  0x04ba => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 155 and $$self{Model} =~ /^ZV-1M2/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8529
8538
  0x059d => { Name => 'ISOInfo', Condition => '$$self{Ver9401} =~ /^(144|146)/', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
8530
8539
  0x0634 => { Name => 'ISOInfo', Condition => '$$self{Ver9401} == 68', Format => 'int8u[5]', SubDirectory => { TagTable => 'Image::ExifTool::Sony::ISOInfo' } },
@@ -752,6 +752,7 @@ my %tagLookup = (
752
752
  'afmoderestrictions' => { 305 => '50.3', 307 => '48.3', 308 => '48.3', 317 => '48.3', 318 => '48.3' },
753
753
  'afonaelockbuttonswitch' => { 87 => 0x702 },
754
754
  'afonbutton' => { 304 => '3.1', 305 => '47.1', 320 => 0x83, 321 => 0x83, 322 => 0x83 },
755
+ 'afperformance' => { 1 => 0x23 },
755
756
  'afpoint' => { 36 => 0x13, 115 => 0x18, 183 => 0x15, 195 => 0x1, 327 => 0x308, 425 => 0x1f, 428 => [0x37,0x7], 432 => 0x19, 433 => 0x18, 434 => [0x18,0x20] },
756
757
  'afpointactivationarea' => { 86 => 0x11, 92 => 0x11 },
757
758
  'afpointareaexpansion' => { 87 => 0x508 },
@@ -1003,6 +1004,8 @@ my %tagLookup = (
1003
1004
  'appinfoapplication' => { 490 => [\'AppInfo','AppInfoApplication'] },
1004
1005
  'appinfoitemuri' => { 490 => [\'AppInfo','AppInfoItemURI'] },
1005
1006
  'appinfoversion' => { 490 => [\'AppInfo','AppInfoVersion'] },
1007
+ 'apple_0x004e' => { 1 => 0x4e },
1008
+ 'apple_0x004f' => { 1 => 0x4f },
1006
1009
  'applekeywords' => { 333 => 'AAPL:Keywords' },
1007
1010
  'applephotosvariationidentifier' => { 402 => 'apple.photos.variation-identifier' },
1008
1011
  'applestoreaccount' => { 400 => 'apID' },
@@ -1427,7 +1430,7 @@ my %tagLookup = (
1427
1430
  'cameratemperaturerangemax' => { 124 => 0x5 },
1428
1431
  'cameratemperaturerangemin' => { 124 => 0x6 },
1429
1432
  'cameratrait' => { 490 => [\'Cameras','CamerasCameraTrait'] },
1430
- 'cameratype' => { 79 => 0x1a, 329 => 0x207 },
1433
+ 'cameratype' => { 1 => 0x2e, 79 => 0x1a, 329 => 0x207 },
1431
1434
  'cameratype2' => { 325 => 0x100 },
1432
1435
  'cameravendorinfo' => { 490 => [\'Cameras','CamerasCameraVendorInfo'] },
1433
1436
  'cameravendorinfomanufacturer' => { 490 => [\'Cameras','CamerasCameraVendorInfoManufacturer'] },
@@ -1801,7 +1804,7 @@ my %tagLookup = (
1801
1804
  'colortempcustom1' => { 42 => 0x45 },
1802
1805
  'colortempcustom2' => { 42 => 0x4a },
1803
1806
  'colortempdaylight' => { 40 => 0x18, 41 => 0x27, 42 => 0x27, 43 => 0x9a, 44 => 0xd1, 45 => 0x2b, 46 => 0x52, 49 => 0x6b, 50 => 0x84, 51 => 0x89, 52 => 0x8c, 383 => 0x53 },
1804
- 'colortemperature' => { 7 => 0x73, 8 => [0x48,0x4e], 9 => 0xc0, 10 => 0x37, 11 => 0x62, 12 => 0x37, 13 => 0x7c, 14 => 0x73, 15 => 0x73, 16 => 0x77, 17 => 0x73, 18 => 0x7c, 19 => 0x58, 20 => 0x73, 21 => 0xc0, 22 => 0x7f, 23 => 0x7d, 24 => 0xc0, 25 => 0xc6, 26 => 0xc7, 27 => 0x135, 28 => 0x7b, 29 => 0x13a, 66 => 0xae, 76 => 0x9, 100 => 0x10ae, 130 => 0x1005, 141 => 0x846, 159 => 'ColorTemperature', 185 => [0x6e,0x49], 186 => 0x3f, 187 => [0x39,0x5e], 189 => 0x10b, 192 => [0x3c,0x4c,0x4e], 343 => 0x321, 383 => 0x50, 415 => 0x1308, 449 => 0xb021, 511 => 'Temperature', 513 => 'Temperature' },
1807
+ 'colortemperature' => { 1 => 0x2d, 7 => 0x73, 8 => [0x48,0x4e], 9 => 0xc0, 10 => 0x37, 11 => 0x62, 12 => 0x37, 13 => 0x7c, 14 => 0x73, 15 => 0x73, 16 => 0x77, 17 => 0x73, 18 => 0x7c, 19 => 0x58, 20 => 0x73, 21 => 0xc0, 22 => 0x7f, 23 => 0x7d, 24 => 0xc0, 25 => 0xc6, 26 => 0xc7, 27 => 0x135, 28 => 0x7b, 29 => 0x13a, 66 => 0xae, 76 => 0x9, 100 => 0x10ae, 130 => 0x1005, 141 => 0x846, 159 => 'ColorTemperature', 185 => [0x6e,0x49], 186 => 0x3f, 187 => [0x39,0x5e], 189 => 0x10b, 192 => [0x3c,0x4c,0x4e], 343 => 0x321, 383 => 0x50, 415 => 0x1308, 449 => 0xb021, 511 => 'Temperature', 513 => 'Temperature' },
1805
1808
  'colortemperatureadj' => { 486 => 0x8013 },
1806
1809
  'colortemperatureauto' => { 239 => 0x4f },
1807
1810
  'colortemperaturebg' => { 329 => 0x1013 },
@@ -2072,7 +2075,7 @@ my %tagLookup = (
2072
2075
  'creditlinereq' => { 543 => 'CreditLineReq' },
2073
2076
  'creditlinerequired' => { 334 => 'CreditLineRequired' },
2074
2077
  'cropactive' => { 104 => 0x0, 111 => 0x244 },
2075
- 'cropangle' => { 511 => 'CropAngle', 513 => 'CropAngle' },
2078
+ 'cropangle' => { 104 => 0x8, 511 => 'CropAngle', 513 => 'CropAngle' },
2076
2079
  'croparea' => { 239 => 0x45, 486 => 0x9011 },
2077
2080
  'cropaspectratio' => { 106 => 0x30101, 111 => 0x260 },
2078
2081
  'cropaspectratiocustom' => { 106 => 0x30102 },
@@ -2112,7 +2115,7 @@ my %tagLookup = (
2112
2115
  'croprightmargin' => { 55 => 0x1 },
2113
2116
  'croprotatedoriginalheight' => { 104 => 0x2 },
2114
2117
  'croprotatedoriginalwidth' => { 104 => 0x1 },
2115
- 'croprotation' => { 104 => 0x8, 126 => 0xb },
2118
+ 'croprotation' => { 104 => 0x7, 126 => 0xb },
2116
2119
  'cropscaledresolution' => { 292 => 0x9e },
2117
2120
  'cropsize' => { 130 => 0x1053 },
2118
2121
  'cropsourceresolution' => { 292 => 0xae },
@@ -3227,7 +3230,6 @@ my %tagLookup = (
3227
3230
  'framing' => { 529 => 'framing' },
3228
3231
  'freebytes' => { 100 => 0x1 },
3229
3232
  'freememorycardimages' => { 185 => [0x37,0x54], 186 => [0x2d,0x4a], 187 => 0x32 },
3230
- 'frontfacingcamera' => { 1 => 0x45 },
3231
3233
  'fujiflashmode' => { 130 => 0x1010 },
3232
3234
  'fujimodel' => { 130 => 0x1447 },
3233
3235
  'fujimodel2' => { 130 => 0x1448 },
@@ -3944,6 +3946,9 @@ my %tagLookup = (
3944
3946
  'jpgfromrawstart' => { 122 => [0x111,0x201] },
3945
3947
  'jpgrecordedpixels' => { 364 => '14.1' },
3946
3948
  'jurisdiction' => { 509 => 'jurisdiction' },
3949
+ 'jxldecodespeed' => { 122 => 0xcd4b },
3950
+ 'jxldistance' => { 122 => 0xcd49 },
3951
+ 'jxleffort' => { 122 => 0xcd4a },
3947
3952
  'keepexposure' => { 320 => 0x237, 321 => 0x237, 322 => 0x24f },
3948
3953
  'kelvinwb_01' => { 372 => 0x5 },
3949
3954
  'kelvinwb_02' => { 372 => 0x9 },
@@ -4877,6 +4882,9 @@ my %tagLookup = (
4877
4882
  'mood' => { 182 => 'WM/Mood' },
4878
4883
  'moonphase' => { 409 => 0x12, 410 => 0x43, 411 => 0x4c },
4879
4884
  'morepermissions' => { 509 => 'morePermissions' },
4885
+ 'motionphoto' => { 494 => 'MotionPhoto' },
4886
+ 'motionphotopresentationtimestampus' => { 494 => 'MotionPhotoPresentationTimestampUs' },
4887
+ 'motionphotoversion' => { 494 => 'MotionPhotoVersion' },
4880
4888
  'motionphotovideo' => { 403 => 'mpvd' },
4881
4889
  'motionsensitivity' => { 409 => 0x29, 411 => 0x60 },
4882
4890
  'movementcount' => { 400 => "\xa9mvc" },
@@ -5567,6 +5575,7 @@ my %tagLookup = (
5567
5575
  'photoidentifier' => { 1 => 0x2b },
5568
5576
  'photoinfoplayback' => { 304 => '17.6', 313 => '33.6' },
5569
5577
  'photometricinterpretation' => { 122 => 0x106, 536 => 'PhotometricInterpretation' },
5578
+ 'photosappfeatureflags' => { 1 => 0x1f },
5570
5579
  'photoshootingmenubank' => { 244 => 0x11e, 245 => 0x11e, 246 => 0x112, 247 => 0x122, 248 => 0x122, 249 => 0x24, 267 => 0x0 },
5571
5580
  'photoshootingmenubankimagearea' => { 242 => 0x6dd, 244 => 0x144, 245 => 0x144, 246 => 0x134, 247 => 0x148, 248 => 0x148, 267 => '7.1' },
5572
5581
  'photoshopbgrthumbnail' => { 397 => 0x409 },
@@ -5743,7 +5752,7 @@ my %tagLookup = (
5743
5752
  'previewcroptop' => { 394 => 0xed },
5744
5753
  'previewdate' => { 406 => 0x0 },
5745
5754
  'previewdatetime' => { 122 => 0xc71b },
5746
- 'previewimage' => { 116 => 0x2000, 117 => 'Exif-PreviewImage', 123 => 'PreviewImage', 125 => 0x4, 169 => 'data', 189 => 0x81, 329 => 0x280, 346 => 0x300, 408 => 'mcvr', 449 => 0x2001 },
5755
+ 'previewimage' => { 116 => 0x2000, 117 => 'Exif-PreviewImage', 123 => 'PreviewImage', 125 => 0x4, 169 => 'data', 189 => 0x81, 329 => 0x280, 346 => 0x300, 400 => 'snal', 408 => 'mcvr', 449 => 0x2001 },
5747
5756
  'previewimageborders' => { 383 => 0x3e },
5748
5757
  'previewimageheight' => { 75 => 0x4, 145 => 0xfa58 },
5749
5758
  'previewimagelength' => { 75 => 0x2, 116 => 0x3, 122 => [0x117,0x202], 189 => 0x89, 259 => 0x202, 324 => 0x102, 329 => 0x1037, 383 => 0x3, 414 => 0x1e, 419 => 0x3, 425 => [0x1b,0x1d], 438 => 0x202 },
@@ -5864,7 +5873,7 @@ my %tagLookup = (
5864
5873
  'rangemaskmapinforgbmax' => { 511 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'], 513 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'] },
5865
5874
  'rangemaskmapinforgbmin' => { 511 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'], 513 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'] },
5866
5875
  'rasterizedcaption' => { 134 => 0x7d },
5867
- 'rating' => { 122 => 0x4746, 130 => 0x1431, 394 => 0xdf, 400 => 'rtng', 408 => 'rtng', 449 => 0x2002, 506 => 'rating', 515 => 'rating', 525 => 'Rating', 530 => 'rating', 538 => 'Rating' },
5876
+ 'rating' => { 106 => 0x10100, 122 => 0x4746, 130 => 0x1431, 394 => 0xdf, 400 => 'rtng', 408 => 'rtng', 449 => 0x2002, 506 => 'rating', 515 => 'rating', 525 => 'Rating', 530 => 'rating', 538 => 'Rating' },
5868
5877
  'ratingpercent' => { 122 => 0x4749, 181 => 'Rating', 400 => 'rate', 538 => 'RatingPercent' },
5869
5878
  'ratingregion' => { 525 => [\'Rating','RatingRatingRegion'] },
5870
5879
  'ratingregioncity' => { 525 => [\'Rating','RatingRatingRegionCity'] },
@@ -6255,7 +6264,7 @@ my %tagLookup = (
6255
6264
  'rflenstype' => { 59 => 0x3d },
6256
6265
  'rgbcurvelimits' => { 111 => 0x238 },
6257
6266
  'rgbcurvepoints' => { 110 => 0x7, 111 => 0x20e },
6258
- 'rgbtables' => { 122 => 0xcd3b },
6267
+ 'rgbtables' => { 122 => 0xcd3f },
6259
6268
  'richtextcomment' => { 520 => 'RichTextComment' },
6260
6269
  'ricohdate' => { 414 => 0x6 },
6261
6270
  'ricohimageheight' => { 414 => 0x2 },
@@ -6858,7 +6867,7 @@ my %tagLookup = (
6858
6867
  'thumbnailfilename' => { 100 => 0x817 },
6859
6868
  'thumbnailformat' => { 538 => [\'Thumbnails','ThumbnailsFormat'] },
6860
6869
  'thumbnailheight' => { 145 => 0xfa55, 538 => [\'Thumbnails','ThumbnailsHeight'] },
6861
- 'thumbnailimage' => { 6 => 'CNDA', 100 => 0x2008, 117 => 'Exif-ThumbnailImage', 125 => 0x3, 170 => 'data', 329 => 0x100, 408 => 'thmb', 538 => [\'Thumbnails','ThumbnailsImage'] },
6870
+ 'thumbnailimage' => { 6 => 'CNDA', 100 => 0x2008, 117 => 'Exif-ThumbnailImage', 125 => 0x3, 170 => 'data', 329 => 0x100, 400 => 'tnal', 408 => 'thmb', 538 => [\'Thumbnails','ThumbnailsImage'] },
6862
6871
  'thumbnailimagename' => { 170 => '1Name' },
6863
6872
  'thumbnailimagesize' => { 170 => 'ImageSize' },
6864
6873
  'thumbnailimagetype' => { 170 => '0Type' },
@@ -12,7 +12,7 @@ meta information extracted from or written to a file.
12
12
  =head1 TAG TABLES
13
13
 
14
14
  The tables listed below give the names of all tags recognized by ExifTool.
15
- They contain a total of 27840 tags, with 17432 unique tag names.
15
+ They contain a total of 27855 tags, with 17441 unique tag names.
16
16
 
17
17
  B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
18
18
  table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
@@ -1042,7 +1042,7 @@ for the official EXIF 2.32 specification.
1042
1042
  0xcd38 MaskSubArea SubIFD no
1043
1043
  0xcd39 ProfileHueSatMapData3 IFD0 float[n]!
1044
1044
  0xcd3a ReductionMatrix3 IFD0 rational64s[n]!
1045
- 0xcd3b RGBTables IFD0 undef!
1045
+ 0xcd3f RGBTables IFD0 undef!
1046
1046
  0xcd40 ProfileGainTableMap2 IFD0 undef!
1047
1047
  0xcd41 JUMBF - Jpeg2000
1048
1048
  0xcd43 ColumnInterleaveFactor SubIFD int32u!
@@ -1050,6 +1050,9 @@ for the official EXIF 2.32 specification.
1050
1050
  0xcd46 ImageStats IFD0 undef!
1051
1051
  0xcd47 ProfileDynamicRange IFD0 DNG ProfileDynamicRange
1052
1052
  0xcd48 ProfileGroupName IFD0 string!
1053
+ 0xcd49 JXLDistance IFD0 float
1054
+ 0xcd4a JXLEffort IFD0 int32u
1055
+ 0xcd4b JXLDecodeSpeed IFD0 int32u
1053
1056
  0xea1c Padding ExifIFD undef!
1054
1057
  0xea1d OffsetSchema ExifIFD int32s!
1055
1058
  0xfde8 OwnerName ExifIFD string/
@@ -4797,6 +4800,9 @@ These tags belong to the ExifTool XMP-GCamera family 1 group.
4797
4800
  MicroVideoOffset integer
4798
4801
  MicroVideoPresentationTimestampUs integer
4799
4802
  MicroVideoVersion integer
4803
+ MotionPhoto integer
4804
+ MotionPhotoPresentationTimestampUs integer
4805
+ MotionPhotoVersion integer
4800
4806
  PortraitNote string
4801
4807
  PortraitRequest string
4802
4808
  PortraitVersion string
@@ -8897,12 +8903,16 @@ Tags extracted from the maker notes of iPhone images.
8897
8903
  0x0019 ImageProcessingFlags? int32s
8898
8904
  0x001a QualityHint? string
8899
8905
  0x001d LuminanceNoiseAmplitude rational64s
8906
+ 0x001f PhotosAppFeatureFlags int32s
8900
8907
  0x0020 ImageCaptureRequestID? string
8901
8908
  0x0021 HDRHeadroom rational64s
8909
+ 0x0023 AFPerformance int32s[2]
8902
8910
  0x0025 SceneFlags? int32s
8903
8911
  0x0026 SignalToNoiseRatioType? int32s
8904
8912
  0x0027 SignalToNoiseRatio rational64s
8905
8913
  0x002b PhotoIdentifier string
8914
+ 0x002d ColorTemperature int32s
8915
+ 0x002e CameraType int32s
8906
8916
  0x002f FocusPosition int32s
8907
8917
  0x0030 HDRGain rational64s
8908
8918
  0x0038 AFMeasuredDepth int32s
@@ -8912,7 +8922,8 @@ Tags extracted from the maker notes of iPhone images.
8912
8922
  0x0040 SemanticStyle no
8913
8923
  0x0041 SemanticStyleRenderingVer no
8914
8924
  0x0042 SemanticStylePreset no
8915
- 0x0045 FrontFacingCamera int32s
8925
+ 0x004e Apple_0x004e? no
8926
+ 0x004f Apple_0x004f? no
8916
8927
 
8917
8928
  =head3 Apple RunTime Tags
8918
8929
 
@@ -12281,6 +12292,7 @@ below by a decimal appended to the tag ID (.0, .1 or .2).
12281
12292
  0x10002 Rotation yes
12282
12293
  0x10003 AngleAdj yes
12283
12294
  0x10021 CustomPictureStyle yes
12295
+ 0x10100 Rating yes
12284
12296
  0x10101 CheckMark yes
12285
12297
  0x10200 WorkColorSpace yes
12286
12298
  0x20001 RawBrightnessAdj yes
@@ -12402,7 +12414,8 @@ below by a decimal appended to the tag ID (.0, .1 or .2).
12402
12414
  4 CropY int32s
12403
12415
  5 CropWidth int32s
12404
12416
  6 CropHeight int32s
12405
- 8 CropRotation double
12417
+ 7 CropRotation int32s
12418
+ 8 CropAngle double
12406
12419
  10 CropOriginalWidth int32s
12407
12420
  11 CropOriginalHeight int32s
12408
12421
 
@@ -22520,6 +22533,7 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
22520
22533
  1102 ISOInfo Sony ISOInfo
22521
22534
  1176 ISOInfo Sony ISOInfo
22522
22535
  1181 ISOInfo Sony ISOInfo
22536
+ 1182 ISOInfo Sony ISOInfo
22523
22537
  1185 ISOInfo Sony ISOInfo
22524
22538
  1186 ISOInfo Sony ISOInfo
22525
22539
  1210 ISOInfo Sony ISOInfo
@@ -29978,6 +29992,7 @@ QuickTimeHandler option may be set to 0 to avoid this.
29978
29992
  'sdes' StoreDescription string
29979
29993
  'sfID' AppleStoreCountry int32s
29980
29994
  'shwm' ShowMovement int8s
29995
+ 'snal' PreviewImage string
29981
29996
  'soaa' SortAlbumArtist string
29982
29997
  'soal' SortAlbum string
29983
29998
  'soar' SortArtist string
@@ -29987,6 +30002,7 @@ QuickTimeHandler option may be set to 0 to avoid this.
29987
30002
  'stik' MediaType int8s
29988
30003
  'titl' Title string/
29989
30004
  'tmpo' BeatsPerMinute int16s
30005
+ 'tnal' ThumbnailImage string
29990
30006
  'trkn' TrackNumber undef
29991
30007
  'tven' TVEpisodeID string
29992
30008
  'tves' TVEpisode int32s
@@ -31674,7 +31690,10 @@ Camero.
31674
31690
 
31675
31691
  Use the API PrintCSV option to output all timed
31676
31692
  PDR data in CSV format at greatly increased speed and with much lower memory
31677
- usage.
31693
+ usage. This option prints the numerical values for each channel in CSV
31694
+ format, suitable for import into RaceRender. In this output, the gear
31695
+ numbers for Neutral and Reverse are changed to -1 and -100 respectively for
31696
+ compatibility with RaceRender.
31678
31697
 
31679
31698
  =head3 GM marl Tags
31680
31699
 
@@ -168,7 +168,8 @@ sub ConvInvISO6709($)
168
168
  # requires at least 3 digits after the decimal point
169
169
  # (and as of Apr 2021, Google Photos doesn't accept coordinats
170
170
  # with more than 5 digits after the decimal place:
171
- # https://exiftool.org/forum/index.php?topic=11055.msg67171#msg67171 )
171
+ # https://exiftool.org/forum/index.php?topic=11055.msg67171#msg67171
172
+ # still a problem Apr 2024: https://exiftool.org/forum/index.php?msg=85761)
172
173
  my @fmt = ('%s%02d.%s%s','%s%03d.%s%s','%s%d.%s%s');
173
174
  my @limit = (90,180);
174
175
  foreach (@a) {