Amazon MediaLive · Schema
TeletextSourceSettings
Teletext Source Settings
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| OutputRectangle | object | |
| PageNumber | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-teletext-source-settings-schema.json",
"title": "TeletextSourceSettings",
"description": "Teletext Source Settings",
"type": "object",
"properties": {
"OutputRectangle": {
"allOf": [
{
"$ref": "#/components/schemas/CaptionRectangle"
},
{
"xml": {
"name": "outputRectangle"
},
"description": "Optionally defines a region where TTML style captions will be displayed"
}
]
},
"PageNumber": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "pageNumber"
},
"description": "Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no \"0x\" prefix."
}
]
}
}
}