Dpp_packager
Name | Type | Description |
---|---|---|
options | object | The options for the DPP packager. |
target | object | The target for the DPP package. |
dpp_command | enum as-02-wrap asdcp-wrap bmxtranswrap raw2bmx | Specifies which DPP command will be used. |
dpp_schema | enum d10 op1a rdd9 as02 opatom as11op1a as11d10 as11rdd9 avid as10 wave imf | Specifies which DPP schema will be used. |
as11_options | object | ***** |
Example dpp_packager
{
"name": "Hybrik DPP Packager Example",
"payload": {
"elements": [
{
"uid": "source_file",
"kind": "source",
"payload": {
"kind": "asset_url",
"payload": {
"storage_provider": "s3",
"url": "s3://my_bucket/my_input_folder/my_file.mp4"
}
}
},
{
"uid": "dpp_package_task",
"kind": "dpp_packager",
"payload": {
"target": {
"location": {
"storage_provider": "s3",
"path": "s3://my_bucket/my_destination"
},
"file_pattern": "{source_basename}_dpp.mxf"
},
"dpp_schema": "d10"
}
}
],
"connections": [
{
"from": [
{
"element": "source_file"
}
],
"to": {
"success": [
{
"element": "dpp_package_task"
}
]
}
}
]
}
}