Amazon MediaConvert · Schema
Rectangle
Use Rectangle to identify a specific area of the video frame.
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| Height | object | |
| Width | object | |
| X | object | |
| Y | 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-rectangle-schema.json",
"title": "Rectangle",
"description": "Use Rectangle to identify a specific area of the video frame.",
"type": "object",
"properties": {
"Height": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin2Max2147483647"
},
{
"xml": {
"name": "height"
},
"description": "Height of rectangle in pixels. Specify only even numbers."
}
]
},
"Width": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin2Max2147483647"
},
{
"xml": {
"name": "width"
},
"description": "Width of rectangle in pixels. Specify only even numbers."
}
]
},
"X": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin0Max2147483647"
},
{
"xml": {
"name": "x"
},
"description": "The distance, in pixels, between the rectangle and the left edge of the video frame. Specify only even numbers."
}
]
},
"Y": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin0Max2147483647"
},
{
"xml": {
"name": "y"
},
"description": "The distance, in pixels, between the rectangle and the top edge of the video frame. Specify only even numbers."
}
]
}
}
}