Amazon MediaPackage · Schema
MssPackage
A Microsoft Smooth Streaming (MSS) packaging configuration.
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| Encryption | object | |
| ManifestWindowSeconds | object | |
| SegmentDurationSeconds | object | |
| StreamSelection | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediapackage/refs/heads/main/json-schema/mediapackage-api-mss-package-schema.json",
"title": "MssPackage",
"description": "A Microsoft Smooth Streaming (MSS) packaging configuration.",
"type": "object",
"properties": {
"Encryption": {
"allOf": [
{
"$ref": "#/components/schemas/MssEncryption"
},
{
"xml": {
"name": "encryption"
}
}
]
},
"ManifestWindowSeconds": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"xml": {
"name": "manifestWindowSeconds"
},
"description": "The time window (in seconds) contained in each manifest."
}
]
},
"SegmentDurationSeconds": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"xml": {
"name": "segmentDurationSeconds"
},
"description": "The duration (in seconds) of each segment."
}
]
},
"StreamSelection": {
"allOf": [
{
"$ref": "#/components/schemas/StreamSelection"
},
{
"xml": {
"name": "streamSelection"
}
}
]
}
}
}