Download Results
For every video that is processed, you have the option to download three different types of data via the Job object convenience methods once a Job status is in the COMPLETED
state.
Type | Description |
---|---|
Retarger (.fwr) | downloads the Retargeting File (.fwr) - A proprietary performance file for use with Faceware Retargeter. |
Animation Controls (.json) | A .json file that contains animation values for every frame. This file can be used to directly apply animation to a character in a game engine. |
Analyzer Project (.zip) | A .zip file for use in Faceware Analyzer if the tracking needs to be corrected manually. |
job = await project.submit_job(...)
wait_until_status(job, [JobStatus.COMPLETED, JobStatus.FAILED])
if job.status is JobStatus.COMPLETED:
await job.download_retargeting_file('sample/retargeter.fwr')
await job.download_control_data('sample/controls.json')
await job.download_analyzer_file('sample/analyzer.zip')