Page 1 of 1

How to create custom column for quicktime:createdate ?

Posted: 16 Mar 2021 18:41
by wwcanoer
How to create custom column for quicktime:createdate ?

I was able to create a custom column for EXIF data using script in custom column:
$res = get("exif", 0x9003, <cc_item>);
return $res;

I used the Exif TagID from: https://exiftool.org/TagNames/EXIF.html

But I could not find a way to create a column for:
quicktime:createdate

The QuickTime tags are here: https://exiftool.org/TagNames/QuickTime.html#Keys
But I don't see a TAGID for createdate.

I tried:

$res = get("quicktime", "createdate", <cc_item>);
return $res;

$res = get("exif", "createdate", <cc_item>);
return $res;

$res = get("exif", "quicktime:createdate", <cc_item>);
return $res;

$res = get("exif", IDIT, <cc_item>);
return $res;

and more...

Re: How to create custom column for quicktime:createdate ?

Posted: 16 Mar 2021 18:57
by wwcanoer
Well, this script works to populate the column but is far too slow, so I'm looking to use the above style.

Code: Select all

$tool = "P:\Program Files (x86)\exiftool.exe";
$res  = runret("""$tool"" -quicktime:createdate ""<cc_item>""", , 65001);
return gettoken(trim($res, <crlf>), 2, ":", "t", 2);

Re: How to create custom column for quicktime:createdate ?

Posted: 16 Mar 2021 19:01
by highend
Not supported by get("exif"...

If you don't want the slowness of exiftool called for each item in the list, tag your items with that data and read the value from the tag database instead

Re: How to create custom column for quicktime:createdate ?

Posted: 16 Mar 2021 19:47
by wwcanoer
Ah, ok. Thanks for the prompt reply.