There was a post back in 2008 from magick regarding image transfer information:
"The image transfer information is not available as an image property at this time."
Does anyone know if this has changed? I'm currently running 6.8.1-6 and don't see it as a property (identify -verbose)
Properties:
date:create: 2012-12-31T03:05:19-08:00
date:modify: 2011-10-21T07:26:06-07:00
document: 00086400.dpx
dpx:file.creator: daVinci
dpx:file.ditto.key: 1
dpx:file.filename: 00086400.dpx
dpx:file.timestamp: 2011:10:19:12:20:15:BST
dpx:file.version: V1.0
dpx:film.format:
dpx:film.frame_id:
dpx:film.frame_position: 86400
dpx:film.held_count: 16777216
dpx:film.sequence_extent: 16777216
dpx:film.slate: SLATE INFO
dpx:image.orientation: 0
dpx:orientation.aspect_ratio: 16777216x16777216
dpx:orientation.x_offset: 0
dpx:orientation.x_size: 1998
dpx:orientation.y_offset: 0
dpx:orientation.y_size: 1080
dpx:television.field_number: 255
dpx:television.interlace: 255
dpx:television.padding: 255
dpx:television.time.code: 01:00:00:00
dpx:television.user.bits: 00:00:00:00
dpx:television.video_signal: 255
dpx:user.id: daVinci
signature: f7268401e579393b0ea8ee7049e8ed1a3c5891169d1e708e250592d048aa0e5b
software: daVinci
Is there another way to access this information?
Image transfer information
-
- Posts: 3
- Joined: 2013-01-10T11:56:05-07:00
- Authentication code: 6789
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Image transfer information
Have you tried accessing the information similar to the way EXIF info is accessed. see http://www.imagemagick.org/script/escape.php
Re: Image transfer information
DPX can hold up to 8 frames and each of the frames would have a transfer characteristic. We could create a property dpx:image[0].transfer-characteristic, dpx:image[1].transfer-characteristic, etc. We'll add it to the next point release of ImageMagick.
-
- Posts: 3
- Joined: 2013-01-10T11:56:05-07:00
- Authentication code: 6789
Re: Image transfer information
May I ask what other DPX properties are currently not being reported?
Re: Image transfer information
Download the ImageMagick source and review coders/dpx.c. You can then identify DPX attributes that are not currently tracked as image properties.
-
- Posts: 3
- Joined: 2013-01-10T11:56:05-07:00
- Authentication code: 6789
Re: Image transfer information
Would it be possible to also have the colorimetric characteristic also be reported in the next release? The transfer and colorimetric characteristics are my main concerns right now. I appreciate your very fast response and addressing of my initial response.magick wrote:Download the ImageMagick source and review coders/dpx.c. You can then identify DPX attributes that are not currently tracked as image properties.
Thanks!