Amazon MediaLive · Schema
StopTimecode
Settings to identify the end of the clip.
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| LastFrameClippingBehavior | object | |
| Timecode | 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-stop-timecode-schema.json",
"title": "StopTimecode",
"description": "Settings to identify the end of the clip.",
"type": "object",
"properties": {
"LastFrameClippingBehavior": {
"allOf": [
{
"$ref": "#/components/schemas/LastFrameClippingBehavior"
},
{
"xml": {
"name": "lastFrameClippingBehavior"
},
"description": "If you specify a StopTimecode in an input (in order to clip the file), you can specify if you want the clip to exclude (the default) or include the frame specified by the timecode."
}
]
},
"Timecode": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "timecode"
},
"description": "The timecode for the frame where you want to stop the clip. Optional; if not specified, the clip continues to the end of the file. Enter the timecode as HH:MM:SS:FF or HH:MM:SS;FF."
}
]
}
}
}