Properties
| Name | Type | Description |
|---|---|---|
| BitDepth | object | |
| CodingMode | object | |
| SampleRate | object |
JSON Schema
{
"$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-wav-settings-schema.json",
"title": "WavSettings",
"description": "Wav Settings",
"type": "object",
"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."
}
]
}
}
}