/api/aes67/audio-meter-limit
Use the interface to obtain specific information of AES67 audio matrix.
Request Mode
POST /api/aes67/audio-meter-limit
Name | Description |
---|---|
status | 0 indicates that the request was accepted successfully. Refer to API Status Codes. |
tx-no | TX channel number. |
rx-no | RX channel number. |
e.g.
{
"tx-no": 1,
"rx-no": [1, 2, 3, 4]
}
Response Body
{
"tx-dBFS": -100,
"tx-min-db": -100,
"tx-max-db": 40,
"rx-channels": [
{
"rx-no": 1,
"dBFS": -87,
"min-db": -100,
"max-db": 40
},
{
"rx-no": 2,
"dBFS": -91,
"min-db": -100,
"max-db": 40
},
{
"rx-no": 3,
"dBFS": -88,
"min-db": -100,
"max-db": 40
},
{
"rx-no": 4,
"dBFS": -100,
"min-db": -100,
"max-db": 40
}
],
"status": 0
}
Name | Description |
---|---|
status | 0 indicates that the request was accepted successfully. Refer to API Status Codes. |
tx-dBFS | TX channel level (dBFS). |
tx-min-db | Minimum TX channel level (dBFS). |
tx-min-db | Maximum TX channel level (dBFS). |
rx-channels[i].rx_no | RX channel number. |
rx-channels[i].dBFS | RX channel level (dBFS). |
rx-channels[i].min-db | Minimum RX channel level (dBFS). |
rx-channels[i].max-db | Maximum RX channel level (dBFS). |