Reports
Name | Type | Description |
---|---|---|
create_condition | enum always on_failure on_success | Determines whether to create a QC report when the QC task succeeds, fails, or always. |
file_pattern | string | This describes the target file name. Placeholders such as {source_basename} for source file name are supported.default: {source_basename} |
location | object | Output location for the analysis report |
temp_location | object | Output location for temporary files (thumbnails) for the QC report |
options | object | ***** |
Example reports
{
"uid": "analyze_task",
"kind": "analyze",
"payload": {
"reports": [
{
"create_condition": "always",
"file_pattern": "{source_basename}_report.pdf",
"location": {
"storage_provider": "s3",
"path": "s3://my_bucket/my_reports_folder"
}
}
],
"general_properties": {
"enabled": true
},
"deep_properties": {
"audio": [
{
"volume": {
"enabled": true
},
"levels": {
"enabled": true
}
}
],
"video": {
"black_borders": {
"black_level": 0.08,
"enabled": true
},
"levels": {
"chroma_levels": true,
"histograms": true,
"enabled": true
}
}
}
}
}