Amazon MediaConvert · Schema
Hdr10Plus
Setting for HDR10+ metadata insertion
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| MasteringMonitorNits | object | |
| TargetMonitorNits | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-hdr10-plus-schema.json",
"title": "Hdr10Plus",
"description": "Setting for HDR10+ metadata insertion",
"type": "object",
"properties": {
"MasteringMonitorNits": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin0Max4000"
},
{
"xml": {
"name": "masteringMonitorNits"
},
"description": "Specify the HDR10+ mastering display normalized peak luminance, in nits. This is the normalized actual peak luminance of the mastering display, as defined by ST 2094-40."
}
]
},
"TargetMonitorNits": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin0Max4000"
},
{
"xml": {
"name": "targetMonitorNits"
},
"description": "Specify the HDR10+ target display nominal peak luminance, in nits. This is the nominal maximum luminance of the target display as defined by ST 2094-40."
}
]
}
}
}