创建/修改视频拖拉设置
请求地址
/video/drag/
请求方法
POST
是否需要登陆授权
是,关于登录授权,参见授权机制
请求参数
必选 | 数据类型及范围 | 说明 | |
---|---|---|---|
bucket_name | true | string | 空间名 |
status | true | enum(enable , disable ) |
开启关闭视频拖拉 |
options | true | array | 视频拖拉设置 |
options
完整结构如下:
[{
"path": "/a/*.mp4", //资源路径
"type": "time", //拖拉类型:time 时间,byte 字节
"start": "start", //起点
"end": "end" //终点
}]
返回结果
{
"result": true,
"data": {
"bucket_name": "test",
"status": "enable",
"options": [
{
"path": "/a/*.mp4",
"type": "time",
"start": "start",
"end": "end"
}
]
}
}
Last edited by hubiao, 2016-08-23 15:29:13