ek.chooseVideo
支持 Promise
从本地相册选择视频或使用相机拍摄。
参数
参数 | 类型 | 默认值 | 必填 | 说明 | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
sourceType | string[] | ['album', 'camera'] | 否 | 视频选择的来源 | |||||||
| |||||||||||
compressed | boolean | true | 否 | 是否压缩所选择的视频文件 | |||||||
camera | string | back | 否 | 默认拉起的是前置或者后置摄像头 | |||||||
| |||||||||||
maxDuration | number | 60 | 否 | 摄视频最长拍摄时间,单位秒 | |||||||
success | function | 否 | 接口调用成功的回调函数 | ||||||||
fail | function | 否 | 接口调用失败的回调函数 | ||||||||
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
返回
属性 | 类型 | 说明 |
---|---|---|
tempFilePath | string | 视频的本地临时文件路径列表 (本地路径) |
duration | number | 视频的时间长度 |
size | number | 视频的数据量大小 |
width | number | 视频的宽度 |
height | number | 视频的高度 |
Example
ts
const res = await ek.chooseVideo()
console.log(res.tempFilePaths)