-
Notifications
You must be signed in to change notification settings - Fork 3
video
PlentyMore edited this page Jun 23, 2018
·
2 revisions
- 通过fileSize和vMd5查找视频
GET /videos/{fileSize}/{vMd5}
| Name | Type | Description |
|---|---|---|
| fileSize | Long | 视频文件大小 |
| vMD5 | String | 视频md5值 |
请求示例
GET /videos/1024/newmd5
返回数据
{
"code": 0,
"msg": "OK",
"data": {
"danmakuId": "e477642bd1d14ced84d188b1035546a9",
"episodeId": 71,
"bangumiName": "dark",
"bangumiId": 67,
"episodeIndex": 2,
"replyable": 1
}
}
失败返回数据
{
"code": 5001,
"msg": "数据未找到",
"data": null
}
- 提交视频关联的剧集信息
POST /videos
参数
| Name | Type | Description |
|---|---|---|
| vMd5 | String | 视频MD5 |
| fileSize | Long | 视频文件大小 |
| epId | Integer | 对应剧集id |
请求示例
POST /videos
{
"vMd5":"dhg24li5vu87gbxu497dk24bdfg2g1pg",
"fileSize":7680,
"epId":221
}
返回数据
{
"code": 0,
"msg": "OK",
"data": {
"videoId": "40281981642b6dd101642ba26b620003",
"vMd5": "dhg24li5vu87gbxu497dk24bdfg2g1pg",
"fileSize": 7680,
"createTime": 1529740421985,
"modifyTime": 1529740421985,
"epId": 221,
"matched": 0
}
}