Creating a new tag RecDate/Time for Edius to read

Started by ANT1R00K1E, March 21, 2024, 06:41:44 AM

Previous topic - Next topic

ANT1R00K1E

Hello! I want to create a new tag, so it can show up in file properties and my Edius 8.5.3 could read it. I am looking for "recDate/Time" copying values from Date/Time Original or Create Date. What I managed to write for a config file:

%Image::ExifTool::UserDefined = (
    'Image::ExifTool::Composite' => {
   recDate/Time => {
      Require => 'DateTimeOriginal',
      ValueConv => '$val',
      ValueConvInv => '$val',
   },
},
);

But it doesn't work. Exiftool says: "Illegal division by zero at .ExifTool_config line 1."
I am not good at exiftool, so I will give any information I can. Just ask. Thank you!

Phil Harvey

"recDate/Time" is not a valid tag name.  Try changing this to RecDateTime.

- 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 ($).