开发者平台

TP-LINK官网首页
开发者平台 / 视频管理系统(VMS)/ API功能接口定义 / 直播管理

4.12.2 获取电视墙下解码器详情

接口说明:

名称 内容
URL https://xxx/tums/decoder/v1/getNvdStatusListOfVideoWall
功能说明 获取电视墙下解码器详情
使用限制

请求参数:

参数名称 参数描述
projectId
String
项目ID
videoWallId
Integer
电视墙ID

返回参数:

参数名称 参数描述
error_code 返回码,0 – 成功,其他- 失败,具体请参考返回码章节
result requestVideoWallUsedNvdList
List
devId
String
设备ID
deviceName
String
设备名称
ip
String
IP地址
configured
Integer
是否进行过hdmi配置,如果配置过,则不能移出电视墙。1:配置过,0:未配置
otherVideoWallUsedNvdList
List
devId
String
设备ID
deviceName
String
设备名称
ip
String
IP地址
configured
Integer
是否进行过hdmi配置,如果配置过,则不能移出电视墙。1:配置过,0:未配置
unusedDecoderList
List
devId
String
设备ID
deviceName
String
设备名称
ip
String
IP地址
configured
Integer
是否进行过hdmi配置,如果配置过,则不能移出电视墙。1:配置过,0:未配置

代码示例

        https://xxx/tums/decoder/v1/getNvdStatusListOfVideoWall
        request:
        {
            "videoWallId":1,
            "projectId":"1"
        }
        
        response:
        {
            "error_code": 0,
            "result":{
                "requestVideoWallUsedNvdList":[
                    { "devId":"1", "deviceName" : "nvd1", "ip":"192.168.1.1", "configured":1, "deviceStatus":1, "supportVideoWall": 1  }
                ],
                "otherVideoWallUsedNvdList":[
                    { "devId":"1", "deviceName" : "nvd1", "ip":"192.168.1.1", "configured":1, "deviceStatus":1, "supportVideoWall": 1  }
                ]
                "unsedNvdList":[
                    { "devId":"1", "deviceName" : "nvd1", "ip":"192.168.1.1", "configured":1, "deviceStatus":1, "supportVideoWall": 1  }
                ]
            }
        }