How to create custom column for quicktime:createdate ?

Discuss and share scripts and script files...
Post Reply
wwcanoer
Posts: 9
Joined: 06 May 2013 20:25

How to create custom column for quicktime:createdate ?

Post 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...

wwcanoer
Posts: 9
Joined: 06 May 2013 20:25

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

Post 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);

highend
Posts: 13260
Joined: 06 Feb 2011 00:33

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

Post 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
One of my scripts helped you out? Please donate via Paypal or paypal_donate (at) stdmail (dot) de

wwcanoer
Posts: 9
Joined: 06 May 2013 20:25

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

Post by wwcanoer »

Ah, ok. Thanks for the prompt reply.

Post Reply