Amazon MediaConvert · JSON Structure

Mediaconvert Api Mp2 Settings Structure

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value MP2.

Type: object Properties: 3
BroadcastingMedia ProcessingMedia

Mp2Settings is a JSON Structure definition published by Amazon MediaConvert, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Bitrate Channels SampleRate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-structure/mediaconvert-api-mp2-settings-structure.json",
  "name": "Mp2Settings",
  "type": "object",
  "description": "Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value MP2.",
  "properties": {
    "Bitrate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin32000Max384000"
        },
        {
          "xml": {
            "name": "bitrate"
          },
          "description": "Specify the average bitrate in bits per second."
        }
      ]
    },
    "Channels": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin1Max2"
        },
        {
          "xml": {
            "name": "channels"
          },
          "description": "Set Channels to specify the number of channels in this output audio track. Choosing Mono in the console will give you 1 output channel; choosing Stereo will give you 2. In the API, valid values are 1 and 2."
        }
      ]
    },
    "SampleRate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin32000Max48000"
        },
        {
          "xml": {
            "name": "sampleRate"
          },
          "description": "Sample rate in hz."
        }
      ]
    }
  }
}