Amazon MediaLive · Schema

VideoCodecSettings

Video Codec Settings

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
FrameCaptureSettings object
H264Settings object
H265Settings object
Mpeg2Settings object
View JSON Schema on GitHub

JSON Schema

medialive-api-video-codec-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-video-codec-settings-schema.json",
  "title": "VideoCodecSettings",
  "description": "Video Codec Settings",
  "type": "object",
  "properties": {
    "FrameCaptureSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FrameCaptureSettings"
        },
        {
          "xml": {
            "name": "frameCaptureSettings"
          }
        }
      ]
    },
    "H264Settings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/H264Settings"
        },
        {
          "xml": {
            "name": "h264Settings"
          }
        }
      ]
    },
    "H265Settings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/H265Settings"
        },
        {
          "xml": {
            "name": "h265Settings"
          }
        }
      ]
    },
    "Mpeg2Settings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Mpeg2Settings"
        },
        {
          "xml": {
            "name": "mpeg2Settings"
          }
        }
      ]
    }
  }
}