Amazon MediaLive · Schema
TimecodeBurninSettings
Timecode Burnin Settings
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| FontSize | object | |
| Position | object | |
| Prefix | 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-timecode-burnin-settings-schema.json",
"title": "TimecodeBurninSettings",
"description": "Timecode Burnin Settings",
"type": "object",
"properties": {
"FontSize": {
"allOf": [
{
"$ref": "#/components/schemas/TimecodeBurninFontSize"
},
{
"xml": {
"name": "fontSize"
},
"description": "Choose a timecode burn-in font size"
}
]
},
"Position": {
"allOf": [
{
"$ref": "#/components/schemas/TimecodeBurninPosition"
},
{
"xml": {
"name": "position"
},
"description": "Choose a timecode burn-in output position"
}
]
},
"Prefix": {
"allOf": [
{
"$ref": "#/components/schemas/__stringMax255"
},
{
"xml": {
"name": "prefix"
},
"description": "Create a timecode burn-in prefix (optional)"
}
]
}
},
"required": [
"Position",
"FontSize"
]
}