ExifTool Forum

ExifTool => Newbies => Topic started by: python on May 14, 2023, 04:03:21 PM

Title: Copy thermal Metadata from jpeg to tiff
Post by: python on May 14, 2023, 04:03:21 PM
Hello I would like some help in copying metadata from a thermal jpeg to a tif specifically the following tags:

Relative Humidity             
Planck R1                       
Planck B                       
Planck F                       
Atmospheric Trans Alpha 1       
Atmospheric Trans Alpha 2       
Atmospheric Trans Beta 1       
Atmospheric Trans Beta 2   
Atmospheric Trans X           

I tried the following:
exiftool.exe -tagsfromfile DJI_1_R.jpg  DJI_1_R.tif

exiftool.exe -tagsfromfile DJI_1_R.jpg -all:all DJI_1_R.tif

but the tags are missing, I tried reading the docs but it's confusing. I would be very grateful if someone can help me with this
Title: Re: Copy thermal Metadata from jpeg to tiff
Post by: python on May 14, 2023, 07:08:28 PM
I found that the tags I want are in FLIR CameraInfo Tags, and that they're not writable. any idea on how can I go about writing them on the tiffs ?
Title: Re: Copy thermal Metadata from jpeg to tiff
Post by: Phil Harvey on May 16, 2023, 02:37:08 PM
I think these are probably MakerNote tags, which can't be written individually.  In this case the only thing you could do is copy the makernotes as a block (see FAQ 8 (https://exiftool.org/faq.html#Q8));

exiftool -tagsfromfile %d%f.jpg -make -model -makernotes file.tif

- Phil