ContactSheet
| Executable | ContactSheet.exe
|
| Stage | 6 |
| Percent Complete | 48% |
| Message Queue | contactsheet
|
The contact sheet generator is responsible for making the summary image of videos. It does so by taking one frame from the video every 1% of the way through the video and arranging these frames into a 10x10 grid.
Capabilities
File Types
ContactSheet processes the following types of files.
Remarks
This ETL is incredibly affected by the performance of the temporary folder (tempdir).
When possible, have the temporary file folder hosted on an SSD local to the machine itself.
You can override the tempdir value in the TruxtonSettings.xml file by adding a command line option to the ETL's section in the TruxtonService.xml file.
A command line settings takes precedence over anything in TruxtonSettings.xml
Modify the etl entry in TruxtonService.xml for Contact Sheet to specify the command line option for tempdir.
<etl>
<description>This generates video contact sheets, the 10x10 grid of images taken throughout the video.</description>
<exe controllable="yes" instances="2" queue="contactsheet">ContactSheet</exe>
<arguments>--tempdir D:\Temp</arguments>
</etl>
Now all of the other ETLs will use the temporary folder specified in TruxtonSettings.xml while Contact Sheet will use D:\Temp