How to create custom column for quicktime:createdate ?
Posted: 16 Mar 2021 18:41
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...
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...