get-webcam-config 接口
获取 WEBCAM 视频源设置信息。
请求方式
POST http://ip/mwapi/get-webcam-config
返回数据
{
"status": 0,
"device-name": "Logical HD Camera",
"formats": [
{
"fourcc": "NV12",
"resolutions": [
{
"width": 1920,
"height": 1080,
"fps": 6000
},
{
"width": 1280,
"height": 720,
"fps": 3000
}
]
}
]
"out-mirror": false,
}
属性 | 说明 |
---|---|
status | 返回状态。0:请求成功,返回其它值请参考 API 状态码。 |
device-name | 设备名称。 |
formats | 格式列表。 |
out-mirror | 是否镜像,有效值:true/false。 |