Chaos Corona Forum

Chaos Corona for Cinema 4D => [C4D] General Discussion => Topic started by: ianosss on 2022-06-09, 10:42:29

Title: Can you tell how many render passes a render has taken from the CXR file?
Post by: ianosss on 2022-06-09, 10:42:29
Hi, Can you tell how many render passes a render has taken from the CXR file?
Title: Re: Can you tell how many render passes a render has taken from the CXR file?
Post by: Frood on 2022-06-09, 16:34:09
Exr-IO (free plugin to import EXRs) extracts the metadata and displays it in Photoshop "File Info..." -> "Raw Data". You can find the passes here as well:

Code: [Select]
<rdf:value rdf:parseType="Resource">
     <exrio:name>corona.stats.passes</exrio:name>
          <exrio:type>int</exrio:type>
          <exrio:value>63</exrio:value>
</rdf:value>


I would love to find a command line tool to view all metadata without the need of opening the entire file in any application. But maybe there is even a python module capable of doing it, no time to test/search so far.


Good Luck



Title: Re: Can you tell how many render passes a render has taken from the CXR file?
Post by: Frood on 2022-06-21, 16:49:19
Quoting myself:

a command line tool to view all metadata without the need of opening the entire file in any application

That would be ExifTool (http://exiftool.org). Unfortunately we get stats metadata in CXRs only.


Good Luck