微信小程序上传视频 问题
- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
微信小程序上传视频
wx.chooseVideo({
sourceType: [‘album’, ‘camera’],
compressed: true,
maxDuration: 10,
camera: ‘back’,
success: res => {
const video = res.tempFilePath;
this.setData({
src: res.tempFilePath,
size: (res.size / (1024 * 1024)).toFixed(2)
})
console.log(res.thumbTempFilePath)
})
}
// this.upLoadImg(video);
}
})
真机不能获取 res.thumbTempFilePath 该怎么解决 就是获取视频封面图
1 回复
看了一下文档
https://developers.weixin.qq.com/miniprogram/dev/api/wx.chooseVideo.html
object.success 回调函数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
tempFilePath | string | 选定视频的临时文件路径 |
duration | number | 选定视频的时间长度 |
size | number | 选定视频的数据量大小 |
height | number | 返回选定视频的高度 |
width | number | 返回选定视频的宽度 |
都没有thumbTempFilePath