Help with exif data from Browning BTC-6PXD camera

Started by k8ysk111, November 06, 2019, 04:46:41 PM

Previous topic - Next topic

k8ysk111

Hello!

I'd like to be able to access the MakerNotes and understand the UserComment data for the Browning BTC-6PXD camera. I'm trying to extract temperature data and give unique names based on image sequence number. I can do it with Reconyx cameras just fine and was hoping to get some help doing it with Browning images. I get a warning - unrecognized makernotes, and I'm not sure how to understand the usercomment data.

System: Windows
ExifTool version: 11.74
Specific command line/script: I'm using the PyExifTool wrapper and Jupyter Notebook.

with exiftool.ExifTool() as et:
    metadata = et.get_metadata("./data/IMG_0073.JPG")
   
for k, v in metadata.items():
    print(k, v)

Output:

SourceFile ./data/IMG_0073.JPG
ExifTool:ExifToolVersion 11.74
ExifTool:Warning [minor] Unrecognized MakerNotes
File:FileName IMG_0073.JPG
File:Directory ./data
File:FileSize 985534
File:FileModifyDate 2019:11:04 21:57:01-08:00
File:FileAccessDate 2019:11:05 14:44:11-08:00
File:FileCreateDate 2019:11:05 14:44:11-08:00
File:FilePermissions 666
File:FileType JPEG
File:FileTypeExtension JPG
File:MIMEType image/jpeg
File:ExifByteOrder II
File:ImageWidth 5376
File:ImageHeight 3024
File:EncodingProcess 0
File:BitsPerSample 8
File:ColorComponents 3
File:YCbCrSubSampling 2 1
EXIF:Make Prometheus
EXIF:Model BTC-6PXD
EXIF:Orientation 1
EXIF:XResolution 72
EXIF:YResolution 72
EXIF:ResolutionUnit 2
EXIF:Software 6PXD-V1804270
EXIF:ModifyDate 2019:06:03 04:45:33
EXIF:YCbCrPositioning 2
EXIF:ExposureTime 0.04166666667
EXIF:FNumber 2.4
EXIF:ExposureProgram 2
EXIF:ISO 100
EXIF:ExifVersion 0220
EXIF:DateTimeOriginal 2019:06:03 04:45:33
EXIF:CreateDate 2019:06:03 04:45:33
EXIF:ComponentsConfiguration 1 2 3 0
EXIF:CompressedBitsPerPixel undef
EXIF:ShutterSpeedValue 0.0416385170963488
EXIF:ApertureValue 2.39781233414876
EXIF:ExposureCompensation 0
EXIF:MaxApertureValue 2.29739670999407
EXIF:MeteringMode 2
EXIF:LightSource 0
EXIF:Flash 25
EXIF:FocalLength 42
EXIF:UserComment M3 ALS0 L74 T74 S0 940IR20 C1 Y33 B0 ST4 NE1 SNAP0
EXIF:FlashpixVersion 0100
EXIF:ColorSpace 1
EXIF:ExifImageWidth 5376
EXIF:ExifImageHeight 3024
EXIF:InteropIndex R98
EXIF:InteropVersion 0100
EXIF:FileSource 3
EXIF:SceneType 1
EXIF:ExposureMode 136
EXIF:WhiteBalance 288
EXIF:DigitalZoomRatio 1000
EXIF:FocalLengthIn35mmFormat 136
EXIF:SceneCaptureType 136
EXIF:Sharpness 136
EXIF:Compression 6
EXIF:ThumbnailOffset 1809
EXIF:ThumbnailLength 3055
EXIF:ThumbnailImage (Binary data 3055 bytes, use -b option to extract)
MPF:MPFVersion 0100
MPF:NumberOfImages 2
MPF:MPImageFlags 8
MPF:MPImageFormat 0
MPF:MPImageType 65537
MPF:MPImageLength 11159
MPF:MPImageStart 974375
MPF:DependentImage1EntryNumber 0
MPF:DependentImage2EntryNumber 0
MPF:PreviewImage (Binary data 11159 bytes, use -b option to extract)
Composite:Aperture 2.4
Composite:ImageSize 5376 3024
Composite:Megapixels 16.257024
Composite:ScaleFactor35efl 3.23809523809524
Composite:ShutterSpeed 0.04166666667
Composite:CircleOfConfusion 0.00927899225303233
Composite:FOV 15.0789030156231
Composite:FocalLength35efl 136
Composite:HyperfocalDistance 79.2111880209627
Composite:LightValue 7.11103131227333


Thanks!

k8ysk111

Please let me know if you would like an example photo. I was unable to attach any.

Phil Harvey

Please send the sample image to philharvey66 at gmail.com and I'll see what I can do.

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).


Phil Harvey

I still haven't received a sample (I don't think it went to the junk mail, but just in case be sure to put "ExifTool" somewhere in the mail to avoid my spam filters)

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

Phil Harvey

Sorry for the delay in responding, I was on vacation.

I got the samples.  I can see something potentially useful stored in the UserComment, but the MakerNotes contain no useful information.

Here are the UserComments for the files you sent.  Does any of this make any sense to you?:

IMG_0001.JPG M7 ALS1932 L108 T112 S4 940IR0 C2 Y123 B0 ST1 NE1 SNAP0
IMG_0002.JPG M6 ALS1932 L108 T112 S4 940IR0 C2 Y123 B0 ST1 NE1 SNAP1
IMG_0003.JPG M5 ALS1932 L108 T112 S4 940IR0 C2 Y123 B0 ST1 NE1 SNAP2
IMG_0073.JPG M3 ALS0 L74 T74 S0 940IR20 C1 Y33 B0 ST4 NE1 SNAP0
IMG_0074.JPG M2 ALS0 L74 T74 S0 940IR20 C1 Y33 B0 ST4 NE1 SNAP1
IMG_0075.JPG M1 ALS0 L74 T74 S0 940IR20 C1 Y33 B0 ST4 NE1 SNAP2


- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).