Amazon MediaLive · JSON Structure

Medialive Api Wav Settings Structure

Wav Settings

Type: object Properties: 3
BroadcastingMedia ProcessingMedia

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

Properties

BitDepth CodingMode 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-medialive/refs/heads/main/json-structure/medialive-api-wav-settings-structure.json",
  "name": "WavSettings",
  "type": "object",
  "description": "Wav Settings",
  "properties": {
    "BitDepth": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__double"
        },
        {
          "xml": {
            "name": "bitDepth"
          },
          "description": "Bits per sample."
        }
      ]
    },
    "CodingMode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WavCodingMode"
        },
        {
          "xml": {
            "name": "codingMode"
          },
          "description": "The audio coding mode for the WAV audio. The mode determines the number of channels in the audio."
        }
      ]
    },
    "SampleRate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__double"
        },
        {
          "xml": {
            "name": "sampleRate"
          },
          "description": "Sample rate in Hz."
        }
      ]
    }
  }
}