StreamSelection

A StreamSelection configuration.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
MaxVideoBitsPerSecond object
MinVideoBitsPerSecond object
StreamOrder object
View JSON Schema on GitHub

JSON Schema

mediapackage-api-stream-selection-schema.json Raw ↑
{
  "$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-stream-selection-schema.json",
  "title": "StreamSelection",
  "description": "A StreamSelection configuration.",
  "type": "object",
  "properties": {
    "MaxVideoBitsPerSecond": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "maxVideoBitsPerSecond"
          },
          "description": "The maximum video bitrate (bps) to include in output."
        }
      ]
    },
    "MinVideoBitsPerSecond": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "xml": {
            "name": "minVideoBitsPerSecond"
          },
          "description": "The minimum video bitrate (bps) to include in output."
        }
      ]
    },
    "StreamOrder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamOrder"
        },
        {
          "xml": {
            "name": "streamOrder"
          },
          "description": "A directive that determines the order of streams in the output."
        }
      ]
    }
  }
}