/usr/share/perl5/Image/ExifTool/Reconyx.pm is in libimage-exiftool-perl 10.80-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | #------------------------------------------------------------------------------
# File: Reconyx.pm
#
# Description: Reconyx maker notes tags
#
# Revisions: 2011-01-11 - P. Harvey Created
#
# References: 1) RCNX_MN10.pdf (courtesy of Reconyx Inc.)
# 2) ultrafire_makernote.pdf (courtesy of Reconyx Inc.)
#------------------------------------------------------------------------------
package Image::ExifTool::Reconyx;
use strict;
use vars qw($VERSION);
$VERSION = '1.05';
# info for Type2 version tags
my %versionInfo = (
Format => 'undef[7]',
ValueConv => 'sprintf("V%.2x.%.2x %.4x:%.2x:%.2x Rev.%s", unpack("CCvCCa", $val))',
ValueConvInv => q{
my @v = $val =~ /^V([0-9a-f]+)\.([0-9a-f]+) (\d{4}):(\d{2}):(\d{2})\s*Rev\.(\w)/i or return undef;
pack('CCvCCa', map(hex, @v[0..4]), $v[5]);
},
);
# maker notes for Reconyx Hyperfire cameras (ref PH)
%Image::ExifTool::Reconyx::Main = (
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
WRITE_PROC => \&Image::ExifTool::WriteBinaryData,
CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
TAG_PREFIX => 'Reconyx',
FORMAT => 'int16u',
WRITABLE => 1,
FIRST_ENTRY => 0,
NOTES => q{
The following tags are extracted from the maker notes of Reconyx Hyperfire
cameras such as the HC500, HC600 and PC900.
},
0x00 => { #1
Name => 'MakerNoteVersion',
PrintConv => 'sprintf("0x%.4x", $val)',
Writable => 0, # (we use this for identification, 0xf101 --> rev 1.0)
PrintConvInv => 'hex $val',
},
0x01 => { #1
Name => 'FirmwareVersion',
Format => 'int16u[3]',
PrintConv => '$val=~tr/ /./; $val',
Writable => 0, # (we use this for identification, 0x0003 --> ver 2 or 3)
},
0x04 => { #1
Name => 'FirmwareDate',
Format => 'int16u[2]',
ValueConv => q{
my @v = split(' ',$val);
sprintf('%.4x:%.2x:%.2x', $v[0], $v[1]>>8, $v[1]&0xff);
},
ValueConvInv => q{
my @v = split(':', $val);
hex($v[0]) . ' ' . hex($v[1] . $v[2]);
},
},
0x06 => {
Name => 'TriggerMode',
Format => 'string[2]',
PrintConv => {
C => 'CodeLoc Not Entered', #1
E => 'External Sensor', #1
M => 'Motion Detection',
T => 'Time Lapse',
},
},
0x07 => {
Name => 'Sequence',
Format => 'int16u[2]',
PrintConv => '$val =~ s/ / of /; $val',
PrintConvInv => 'join(" ", $val=~/\d+/g)',
},
0x09 => { #1
Name => 'EventNumber',
Format => 'int16u[2]',
ValueConv => 'my @v=split(" ",$val); ($v[0]<<16) + $v[1]',
ValueConvInv => '($val>>16) . " " . ($val&0xffff)',
},
0x0b => {
Name => 'DateTimeOriginal',
Description => 'Date/Time Original',
Format => 'int16u[6]',
Groups => { 2 => 'Time' },
Priority => 0, # (not as reliable as EXIF)
Shift => 'Time',
ValueConv => q{
my @a = split ' ', $val;
# have seen these values written big-endian when everything else is little-endian
if ($a[0] & 0xff00 and not $a[0] & 0xff) {
$_ = ($_ >> 8) | (($_ & 0xff) << 8) foreach @a;
}
sprintf('%.4d:%.2d:%.2d %.2d:%.2d:%.2d', @a[5,3,4,2,1,0]);
},
ValueConvInv => q{
my @a = ($val =~ /\d+/g);
return undef unless @a >= 6;
join ' ', @a[5,4,3,1,2,0];
},
PrintConv => '$self->ConvertDateTime($val)',
PrintConvInv => '$self->InverseDateTime($val)',
},
0x12 => {
Name => 'MoonPhase',
Groups => { 2 => 'Time' },
PrintConv => {
0 => 'New',
1 => 'New Crescent',
2 => 'First Quarter',
3 => 'Waxing Gibbous',
4 => 'Full',
5 => 'Waning Gibbous',
6 => 'Last Quarter',
7 => 'Old Crescent',
},
},
0x13 => {
Name => 'AmbientTemperatureFahrenheit',
Format => 'int16s',
PrintConv => '"$val F"',
PrintConvInv => '$val=~/(-?\d+)/ ? $1 : $val',
},
0x14 => {
Name => 'AmbientTemperature',
Format => 'int16s',
PrintConv => '"$val C"',
PrintConvInv => '$val=~/(-?\d+)/ ? $1 : $val',
},
0x15 => {
Name => 'SerialNumber',
Format => 'undef[30]',
RawConv => '$_ = $self->Decode($val, "UCS2"); s/\0.*//; $_',
RawConvInv => q{
$_ = $self->Encode($val, "UCS2");
$_ = substr($_, 0, 30) if length($_) > 30;
return $_;
},
},
0x24 => 'Contrast', #1
0x25 => 'Brightness', #1
0x26 => 'Sharpness', #1
0x27 => 'Saturation', #1
0x28 => {
Name => 'InfraredIlluminator',
PrintConv => { 0 => 'Off', 1 => 'On' },
},
0x29 => 'MotionSensitivity', #1
0x2a => { #1
Name => 'BatteryVoltage',
ValueConv => '$val / 1000',
ValueConvInv => '$val * 1000',
PrintConv => '"$val V"',
PrintConvInv => '$val=~s/ ?V$//; $val',
},
0x2b => {
Name => 'UserLabel',
Format => 'string[22]', #1 (but manual says 16-char limit)
},
);
# maker notes for Reconyx UltraFire cameras (ref PH)
%Image::ExifTool::Reconyx::Type2 = (
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
WRITE_PROC => \&Image::ExifTool::WriteBinaryData,
CHECK_PROC => \&Image::ExifTool::CheckBinaryData,
TAG_PREFIX => 'Reconyx',
WRITABLE => 1,
FIRST_ENTRY => 0,
NOTES => 'Tags extracted from models such as the UltraFire.',
# 0x0a - int32u makernote ID 0x00020000 #2
# 0x0e - int16u makernote size #2
# 0x12 - int32u public structure ID 0x07f100001 #2
# 0x16 - int16u public structure size #2 (0x5d = start of public ID to end of UserLabel)
0x18 => { Name => 'FirmwareVersion', %versionInfo },
0x1f => { Name => 'Micro1Version', %versionInfo }, #2
0x26 => { Name => 'BootLoaderVersion', %versionInfo }, #2
0x2d => { Name => 'Micro2Version', %versionInfo }, #2
0x34 => {
Name => 'TriggerMode',
Format => 'undef[1]',
PrintConv => {
M => 'Motion Detection',
T => 'Time Lapse',
P => 'Point and Shoot', #2
},
},
0x35 => {
Name => 'Sequence',
Format => 'int8u[2]',
PrintConv => '$val =~ s/ / of /; $val',
PrintConvInv => 'join(" ", $val=~/\d+/g)',
},
0x37 => { #2
Name => 'EventNumber',
Format => 'int32u',
},
0x3b => {
Name => 'DateTimeOriginal',
Description => 'Date/Time Original',
Format => 'int8u[7]',
Groups => { 2 => 'Time' },
Priority => 0, # (not as reliable as EXIF)
Shift => 'Time',
ValueConv => q{
my @a = split ' ', $val;
$a[5] += pop(@a) * 256;
sprintf('%.4d:%.2d:%.2d %.2d:%.2d:%.2d', reverse @a);
},
ValueConvInv => q{
my @a = ($val =~ /\d+/g);
return undef unless @a >= 6;
unshift @a, ($a[0] >> 8);
$a[1] -= $a[0] * 256;
join ' ', @a[6,5,4,3,2,1,0];
},
PrintConv => '$self->ConvertDateTime($val)',
PrintConvInv => '$self->InverseDateTime($val)',
},
0x42 => { #2
Name => 'DayOfWeek',
Groups => { 2 => 'Time' },
PrintConv => {
0 => 'Sunday',
1 => 'Monday',
2 => 'Tuesday',
3 => 'Wednesday',
4 => 'Thursday',
5 => 'Friday',
6 => 'Saturday',
},
},
0x43 => {
Name => 'MoonPhase',
Groups => { 2 => 'Time' },
PrintConv => {
0 => 'New',
1 => 'New Crescent',
2 => 'First Quarter',
3 => 'Waxing Gibbous',
4 => 'Full',
5 => 'Waning Gibbous',
6 => 'Last Quarter',
7 => 'Old Crescent',
},
},
0x44 => {
Name => 'AmbientTemperatureFahrenheit',
Format => 'int16s',
PrintConv => '"$val F"',
PrintConvInv => '$val=~/(-?\d+)/ ? $1 : $val',
},
0x46 => {
Name => 'AmbientTemperature',
Format => 'int16s',
PrintConv => '"$val C"',
PrintConvInv => '$val=~/(-?\d+)/ ? $1 : $val',
},
0x48 => {
Name => 'Illumination',
PrintConv => { 0 => 'Off', 1 => 'On' },
},
0x49 => {
Name => 'BatteryVoltage',
Format => 'int16u',
ValueConv => '$val / 1000',
ValueConvInv => '$val * 1000',
PrintConv => '"$val V"',
PrintConvInv => '$val=~s/ ?V$//; $val',
},
0x4b => {
Name => 'SerialNumber',
Format => 'string[15]',
},
0x5a => {
Name => 'UserLabel',
Format => 'string[21]',
},
);
__END__
=head1 NAME
Image::ExifTool::Reconyx - Reconyx maker notes tags
=head1 SYNOPSIS
This module is loaded automatically by Image::ExifTool when required.
=head1 DESCRIPTION
This module contains definitions required by Image::ExifTool to interpret
maker notes in images from Reconyx cameras.
=head1 AUTHOR
Copyright 2003-2018, Phil Harvey (phil at owl.phy.queensu.ca)
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 SEE ALSO
L<Image::ExifTool::TagNames/Reconyx Tags>,
L<Image::ExifTool(3pm)|Image::ExifTool>
=cut
|