EncodingParameters

A collection of parameters that determine how MediaConnect will convert the content. These fields only apply to outputs on flows that have a CDI source.

BroadcastingLive VideoMediaMedia Transport

Properties

Name Type Description
CompressionFactor object
EncoderProfile object
View JSON Schema on GitHub

JSON Schema

mediaconnect-api-encoding-parameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconnect/refs/heads/main/json-schema/mediaconnect-api-encoding-parameters-schema.json",
  "title": "EncodingParameters",
  "description": "A collection of parameters that determine how MediaConnect will convert the content. These fields only apply to outputs on flows that have a CDI source.",
  "type": "object",
  "properties": {
    "CompressionFactor": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__double"
        },
        {
          "xml": {
            "name": "compressionFactor"
          },
          "description": "A value that is used to calculate compression for an output. The bitrate of the output is calculated as follows: Output bitrate = (1 / compressionFactor) * (source bitrate) This property only applies to outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol. Valid values are floating point numbers in the range of 3.0 to 10.0, inclusive."
        }
      ]
    },
    "EncoderProfile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EncoderProfile"
        },
        {
          "xml": {
            "name": "encoderProfile"
          },
          "description": "A setting on the encoder that drives compression settings. This property only applies to video media streams associated with outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol."
        }
      ]
    }
  },
  "required": [
    "EncoderProfile",
    "CompressionFactor"
  ]
}