Properties
| Name | Type | Description |
|---|---|---|
| Bitrate | 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-mp2-settings-schema.json",
"title": "Mp2Settings",
"description": "Mp2 Settings",
"type": "object",
"properties": {
"Bitrate": {
"allOf": [
{
"$ref": "#/components/schemas/__double"
},
{
"xml": {
"name": "bitrate"
},
"description": "Average bitrate in bits/second."
}
]
},
"CodingMode": {
"allOf": [
{
"$ref": "#/components/schemas/Mp2CodingMode"
},
{
"xml": {
"name": "codingMode"
},
"description": "The MPEG2 Audio coding mode. Valid values are codingMode10 (for mono) or codingMode20 (for stereo)."
}
]
},
"SampleRate": {
"allOf": [
{
"$ref": "#/components/schemas/__double"
},
{
"xml": {
"name": "sampleRate"
},
"description": "Sample rate in Hz."
}
]
}
}
}