get-usb-output-config 接口
获取 USB Output 信息。
请求方式
POST http://ip/mwapi?method=get-usb-output-config
返回数据
{
"status": 0,
"uvc-formats": [
{
"fourcc": "NV12",
"resolutions": [
{
"width": 1920,
"height": 1080,
"fps": 6000
},
{
"width": 1280,
"height": 720,
"fps": 3000
}
]
}
],
"uac-formats": [
{
"sample-rate": 48000,
"channels": 2,
"bits-count": 16
}
]
}
属性 | 说明 |
---|---|
status | 返回状态。0:请求成功,返回其它值请参考 API 状态码。 |
uvc-formats | UVC格式列表。 |
uac-formats | UAC格式列表。 |