get-album-files-list 接口
获取服务器相册(录制或截屏)文件列表
请求方式
POST http://ip/mwapi/get-album-files-list
参数 | 说明 |
---|---|
type | 资源类型。0:all 1:截屏图片 2:录制视频 |
返回数据
JSON 结构如下:
{
"info": {
"items": [
{
"createTime": 1640055676,
"duration": 0,
"filePath": "album/2a83adf5-3e0d-4ad0-9af5-81d8fc0fea18.jpeg",
"id": 2,
"md5": "md5",
"name": "2021.12.21 11:01AM",
"size": 502784,
"thumbPath": "album/2a83adf5-3e0d-4ad0-9af5-81d8fc0fea18.thumb.jpeg",
"type": 1
},
{
"createTime": 1640055673,
"duration": 1849,
"filePath": "album/16241d75-12ea-4344-bf7f-bf683e9b850e.mp4",
"id": 1,
"md5": "md5",
"name": "2021.12.21 11:01AM",
"size": 1487872,
"thumbPath": "album/16241d75-12ea-4344-bf7f-bf683e9b850e.thumb.jpeg",
"type": 2
}
],
"pageIndex": 0,
"totalCount": 2
},
"message": "success",
"result": 0
}
属性 | 说明 |
---|---|
result | 返回状态。0:请求成功,返回其它值请参考 API 状态码。 |
id | 文件ID |
type | 文件类型。1:截屏图片 2:录制视频 |
name | 资源名称 |
md5 | 文件md5值 |
filePath | 文件相对路径,可通过http访问(http://设备IP/相对路径 |
thumbPath | 缩略图相对路径,可通过http访问(http://设备IP/相对路径) |
createTime | 文件创建时间 相对1970-01-01时间戳 |
duration | 文件持续时间。仅视频有效,单位毫秒 |
size | 文件大小,单位Byte |