/api/dante/state
Use the interface to obtain running state of dante.
Request Mode
POST /api/dante/state
Response Body
{
"device": {
"deivce-lock": false
},
"clock-basic": {
"uuid": "FE:30:38:71:E3:C7",
"master-uuid": "00:1D:C1:50:B6:D8",
"grandmaster-uuid": "00:1D:C1:50:B6:D8",
"is-mute": false,
"is-locked": true,
"freq-ppm": 2
},
"clock-params": {
"priority1": 254,
"priority2": 116,
"domain": 0,
"sync-interval": 0,
"announce-interval": 0,
"ttl": 16
},
"audio-format": {
"sample-rate": 48000,
"encoding": "PCM24"
},
"status": 0
}
Name | Description |
---|---|
status | 0 indicates that the request was accepted successfully. Refer to API Status Codes. |
device.deivce-lock | True: lock dante settings; false: unlock dante settings. |
clock-basic.uuid | UUID |
clock-basic.master-uuid | master UUID |
clock-basic.grandmaster-uuid | grandmaster UUID |
clock-basic.is-mute | True: muted; false: unmuted. |
clock-basic.is-locked | True: lock clock; false: unlock clock, your device can regain sync with the leader clock. |
clock-basic.freq-ppm | Frequency PPM |
clock-params.priority1 | PTP priority 1 |
clock-params.priority2 | PTP priority 2 |
clock-params.domain | PTP domain |
clock-params.sync-interval | Sync interval. |
clock-params.announce-interval | Announce interval. |
audio-format.sample-rate | Audio sample rate. |
audio-format.encoding | Audio encoding. |