Amazon MediaTailor · Schema
DashPlaylistSettings
Dash manifest configuration parameters.
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| ManifestWindowSeconds | object | |
| MinBufferTimeSeconds | object | |
| MinUpdatePeriodSeconds | object | |
| SuggestedPresentationDelaySeconds | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediatailor/refs/heads/main/json-schema/mediatailor-api-dash-playlist-settings-schema.json",
"title": "DashPlaylistSettings",
"description": "Dash manifest configuration parameters.",
"type": "object",
"properties": {
"ManifestWindowSeconds": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "The total duration (in seconds) of each manifest. Minimum value: <code>30</code> seconds. Maximum value: <code>3600</code> seconds."
}
]
},
"MinBufferTimeSeconds": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds."
}
]
},
"MinUpdatePeriodSeconds": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds."
}
]
},
"SuggestedPresentationDelaySeconds": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds."
}
]
}
}
}