Amazon MediaPackage · JSON Structure

Mediapackage Api Mss Package Structure

A Microsoft Smooth Streaming (MSS) packaging configuration.

Type: object Properties: 4
BroadcastingMedia ProcessingMedia

MssPackage is a JSON Structure definition published by Amazon MediaPackage, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Encryption ManifestWindowSeconds SegmentDurationSeconds StreamSelection

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediapackage/refs/heads/main/json-structure/mediapackage-api-mss-package-structure.json",
  "name": "MssPackage",
  "type": "object",
  "description": "A Microsoft Smooth Streaming (MSS) packaging configuration.",
  "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"
          }
        }
      ]
    }
  }
}