Amazon MediaLive · Schema

MultiplexVideoSettings

The video configuration for each program in a multiplex.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
ConstantBitrate object
StatmuxSettings object
View JSON Schema on GitHub

JSON Schema

medialive-api-multiplex-video-settings-schema.json Raw ↑
{
  "$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-multiplex-video-settings-schema.json",
  "title": "MultiplexVideoSettings",
  "description": "The video configuration for each program in a multiplex.",
  "type": "object",
  "properties": {
    "ConstantBitrate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin100000Max100000000"
        },
        {
          "xml": {
            "name": "constantBitrate"
          },
          "description": "The constant bitrate configuration for the video encode.\nWhen this field is defined, StatmuxSettings must be undefined."
        }
      ]
    },
    "StatmuxSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MultiplexStatmuxVideoSettings"
        },
        {
          "xml": {
            "name": "statmuxSettings"
          },
          "description": "Statmux rate control settings.\nWhen this field is defined, ConstantBitrate must be undefined."
        }
      ]
    }
  }
}