VideoConfiguration

Object specifying a stream’s video configuration, as set up by the broadcaster (usually in an encoder). This is part of the IngestConfiguration object and used for monitoring stream health.

Live StreamingMediaVideoReal-Time

Properties

Name Type Description
avcLevel object
avcProfile object
codec object
encoder object
targetBitrate object
targetFramerate object
videoHeight object
videoWidth object
View JSON Schema on GitHub

JSON Schema

ivs-video-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-interactive-video-service/refs/heads/main/json-schema/ivs-video-configuration-schema.json",
  "title": "VideoConfiguration",
  "description": "Object specifying a stream\u2019s video configuration, as set up by the broadcaster (usually in an encoder). This is part of the <a>IngestConfiguration</a> object and used for monitoring stream health.",
  "type": "object",
  "properties": {
    "avcLevel": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Indicates the degree of required decoder performance for a profile. Normally this is set automatically by the encoder. For details, see the H.264 specification."
        }
      ]
    },
    "avcProfile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Indicates to the decoder the requirements for decoding the stream. For definitions of the valid values, see the H.264 specification."
        }
      ]
    },
    "codec": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Codec used for the video encoding."
        }
      ]
    },
    "encoder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Software or hardware used to encode the video."
        }
      ]
    },
    "targetBitrate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The expected ingest bitrate (bits per second). This is configured in the encoder."
        }
      ]
    },
    "targetFramerate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The expected ingest framerate. This is configured in the encoder."
        }
      ]
    },
    "videoHeight": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Video-resolution height in pixels."
        }
      ]
    },
    "videoWidth": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Video-resolution width in pixels."
        }
      ]
    }
  }
}