查询录像
-
url
https://www.cloudroom.com/CLOUDROOM-SERVER/v2/video?confId={confId}¤t={current}&size={size}
-
请求方式
GET
-
请求参数
参数名 必填 类型 描述 confId 否 Long 会议号 current 否 Integer 当前页码(默认为1,小于1使用默认值,超出最大页码数返回空) size 否 Integer 每页数量(默认为20,最大值为100,超出范围使用默认值) -
请求示例
https://www.cloudroom.com/CLOUDROOM-SERVER/v2/video?current=1&size=20
-
返回参数
参数名 类型 描述 total Integer 总数 records Object[] 录像列表 remaining Integer 是否还有未拉取的数据(0:否;1:是) -
录像列表详情
参数名 类型 描述 fileId String 录像文件id title String 录像文件名 confId Long 会议号 createTime Long 创建时间(时间戳,单位:秒) duration Long 录像时长(单位:秒) size Long 录像大小(单位:B) vodUrl String 播放地址 url String 下载地址 -
返回参数示例
{ "total": 1, "records": [ { "title": "云屋科技的会议", "fileId": "a1b27fe0212f42458c38aa86858939ee", "confId": 12345678, "createTime": 1649840637, "duration": 461, "size": 6950912, "url": "http://www.cloudroom.com/lv//vod/a1b27fe0212f42458c38aa86858939ee/f0.mp4?download_name=云屋科技的会议.mp4", "vodUrl": "http://www.cloudroom.com/vod/a1b27fe0212f42458c38aa86858939ee" } ], "remaining": 0 }