Amazon MediaLive · JSON Structure

Medialive Api Audio Track Selection Structure

Audio Track Selection

Type: object Properties: 2 Required: 1
BroadcastingMedia ProcessingMedia

AudioTrackSelection is a JSON Structure definition published by Amazon MediaLive, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Tracks DolbyEDecode

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-medialive/refs/heads/main/json-structure/medialive-api-audio-track-selection-structure.json",
  "name": "AudioTrackSelection",
  "type": "object",
  "description": "Audio Track Selection",
  "properties": {
    "Tracks": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__listOfAudioTrack"
        },
        {
          "xml": {
            "name": "tracks"
          },
          "description": "Selects one or more unique audio tracks from within a source."
        }
      ]
    },
    "DolbyEDecode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AudioDolbyEDecode"
        },
        {
          "xml": {
            "name": "dolbyEDecode"
          },
          "description": "Configure decoding options for Dolby E streams - these should be Dolby E frames carried in PCM streams tagged with SMPTE-337"
        }
      ]
    }
  },
  "required": [
    "Tracks"
  ]
}