Amazon MediaLive · Schema
AudioChannelMapping
Audio Channel Mapping
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| InputChannelLevels | object | |
| OutputChannel | 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-audio-channel-mapping-schema.json",
"title": "AudioChannelMapping",
"description": "Audio Channel Mapping",
"type": "object",
"properties": {
"InputChannelLevels": {
"allOf": [
{
"$ref": "#/components/schemas/__listOfInputChannelLevel"
},
{
"xml": {
"name": "inputChannelLevels"
},
"description": "Indices and gain values for each input channel that should be remixed into this output channel."
}
]
},
"OutputChannel": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin0Max7"
},
{
"xml": {
"name": "outputChannel"
},
"description": "The index of the output channel being produced."
}
]
}
},
"required": [
"OutputChannel",
"InputChannelLevels"
]
}