Compare_asset
Name | Type | Description |
---|---|---|
kind | enum asset_url asset_urls asset_complex | The type of asset. asset_url is a single asset, asset_urls is an array of assets, and asset_complex is an asset assembled from multiple components. |
payload | anyOf asset_url asset_urls | The asset description payload. |
Example compare_asset
{
"uid": "analyze_task",
"kind": "analyze",
"payload": {
"compare_asset": {
"kind": "asset_url",
"payload": {
"storage_provider": "s3",
"url": "s3://my_bucket/my_reference_file.mov"
}
}
},
"general_properties": {
"enabled": true
},
"deep_properties": {
"audio": {
"levels": {
"enabled": true
}
},
"video": {
"settings": {
"comparative": {
"size_selector": "config",
"width": 1280,
"height": 720
}
},
"vmaf": {
"enabled": true
}
}
}
}