更新时间:2023-02-09 11:46:34
在开始之前,请确保您已经设置了回调设置。要了解如何配置回调设置,请访问回调设置。
POST 请求。
对于常见的回复,请访问Response 。
响应格式如下:
{
"code":**,
"data":{
"videoListInfo":[],
"videoTotal":**
},
"message":"**"
}
data
参数 | 类型 | 描述 |
---|---|---|
videoTotal | int | 当前页面上列出的视频总数。如果有很多视频,视频将被分隔并分页显示。 |
videoListInfo | array | 视频列表信息。 |
videoListInfo
参数 | 类型 | 描述 |
---|---|---|
videoName | string | 视频的名称。 |
videoId | string | 视频身份 ID。 |
createUser | string | 任务创建者。 |
encrypt | int | 标识视频是否加密。0 – 未加密1 – 加密 |
videoSize | string | 视频的大小。 |
videoDuration | string | 视频长度。 |
createTime | string | 视频创建日期。 |
uploadTime | string | 视频上传时间。 |
updateTime | string | 视频修改时间。 |
videoDescription | string | 视频说明。 |
videoClassification | string | 视频类。 |
imageUrl | string | 视频封面图片网址。 |
publishDomain | string | 发布域。 |
flashPlayerName | string | 用于视频的 Flash 播放器的名称 |
flashPlayerId | string | Flash 播放器 ID。 |
flashImageRatio | int | 视频纵横比,范围:- 0 (16:9)- 1 (4:3) |
flashAutoPlay | int | 是否启用自动播放。- 0(否)- 1(是) |
videoState | string | 视频状态。- 0(不可用)- 1(可用) |
transcodeState | string | 视频转码的进展。 启用加密时:- 1(加密转码)- 2(未加密转码)- 3(转码中)- 4(转码失败) - 5(未转码)禁用加密时:- 1(已转码)- 2(未转码)- 3(正在转码) br>- 4(转码失败) |
videoSourceCode | int | 该值表示视频来自哪里。- 0(其他)- 1(上传)- 2(现场录制)- 3(视频提取)</ br>- 4(视频剪辑)- 5(视频拼接)- 6(CDN 边缘直播)- 10(普通直播)- 11(上传SDK)- 12 (上传工具) |
videoResolutions | array | 视频分辨率信息。 |
** videoResolutions**
参数 | 类型 | 描述 |
---|---|---|
clarity | int | 视频质量。- 1(原画)- 2(流畅)- 3(标清)- 4(高清)- 5(超清)</ br>- -99(录制文件) |
serverType | int | 终端设备类型。- 0(PC端)- 1(原始视频)- 2(移动移动端) |
height | int | 高度 |
width | int | 宽度 |
fileSize | long | 文件大小,单位:bit。 |
{
"code": 200,
"data": {
"videoListInfo": [
{
"createUser": "testUser",
"encrypt": 0,
"flashAutoPlay": 1,
"flashImageRatio": 0,
"flashPlayerId": "DF2DAF233DDA",
"flashPlayerName": "basic player",
"imageUrl": "http://ovptest.haplat.net//live/201708/4101630234a74ee8864e56ea88e5d290_20170801171220/cloudv-cover/9B0F7BA8BCB9D056D4C24ADDBF821D10.jpg",
"publishDomain": "ovptest.haplat.net",
"transcodeState": "5",
"updateTime": "1501578874",
"uploadTime": "1501578866",
"videoClassification": "null",
"videoDescription": "",
"videoDuration": "36",
"videoId": "9B0F7BA8BCB9D056D4C24ADDBF821D10",
"videoName": "creattest_20170801171220",
"videoResolutions": [
{
"clarity": -99,
"fileSize": 5579209,
"height": 768,
"serverType": -1,
"width": 1364
},
{
"clarity": 1,
"fileSize": 5573951,
"height": 768,
"serverType": -1,
"width": 1364
}
],
"videoSize": "11153160",
"videoSourceCode": 2,
"videoState": "0"
},
{
"createUser": "testUser",
"encrypt": 0,
"flashAutoPlay": 1,
"flashImageRatio": 0,
"flashPlayerId": "DF2DAF233DDA",
"flashPlayerName": "basic player",
"imageUrl": "http://ovptest.haplat.net//live/201708/4101630234a74ee8864e56ea88e5d290_20170801171104/cloudv-cover/E869FC95F3C7493ED56E8751C4AA7BEE.jpg",
"publishDomain": "ovptest.haplat.net",
"transcodeState": "5",
"updateTime": "1501578796",
"uploadTime": "1501578790",
"videoClassification": "null",
"videoDescription": "",
"videoDuration": "15",
"videoId": "E869FC95F3C7493ED56E8751C4AA7BEE",
"videoName": "creattest_20170801171104",
"videoResolutions": [
{
"clarity": -99,
"fileSize": 2533394,
"height": 768,
"serverType": -1,
"width": 1364
},
{
"clarity": 1,
"fileSize": 2531523,
"height": 768,
"serverType": -1,
"width": 1364
}
],
"videoSize": "5064917",
"videoSourceCode": 2,
"videoState": "0"
}
],
"videoTotal": 2
},
"message": "success"
}
访问常见错误代码以了解更多信息。