get-video-config 接口
获取 HDMI 视频源设置信息。
请求方式
POST http://ip/mwapi/get-video-config
参数 |
说明 |
source-id |
输入源ID, HDMI 1为0, HDMI 2为1 |
返回数据
{
"status": 0,
"in-auto-color-fmt": true,
"in-color-fmt": "rgb",
"in-auto-quant-range": true,
"in-quant-range": "full",
"brightness": 0,
"contrast": 100,
"hue": 0,
"saturation": 100,
"deinterlace": "none",
"out-mirror": false,
}
属性 |
说明 |
status |
返回状态。0:请求成功,返回其它值请参考 API 状态码。 |
in-auto-color-fmt |
输入色彩空间是否自动获取,有效值:true/false。 |
in-color-fmt |
输入色彩空间值,有效值:rgb、bt.601、bt.709、bt.2020。 |
in-auto-quant-range |
输入量化范围是否自动获取,有效值:true/false。 |
in-quant-range |
输入量化范围值,有效值:full、limited。 |
brightness |
亮度,有效值:-100 ~ +100。 |
contrast |
对比度,有效值:50 ~ 200。 |
hue |
色调,有效值:-90 ~ 90。 |
saturation |
饱和度,有效值:0 ~ 200。 |
deinterlace |
去隔行,有效值:none、top-field、bottom-field。 |
out-mirror |
是否镜像,有效值:true/false。 |