问题模块 框架类型 问题类型 操作系统 操作系统版本 手机型号 微信版本
客户端 微信小程序 Bug Android v1.02.1809111 华为畅销8puls 6.7.2
在开发工具中上传视频后有视频缩略图,
但是在真机调试的时候没有视频缩略图了
,这目前是个bug吗,有什么方法可以在真机上,上传视频获取到视频第一帧的缩略图吗
代码片段
wx.chooseVideo({ sourceType: ['album', 'camera'], //从相册选择视频或者使用camera(相机摄像) compressed: true, maxDuration: 60, //最大时长 camera: 'back', success: function(res) { console.log(res); that.setData({ src: res.tempFilePath, tempFilePath: res.tempFilePath, thumbTempFilePath: res.thumbTempFilePath }); }, fail: function(a) { console.log('失败'); } })
微信小程序开发问题解答
微信小程序开发者回答:
你好,wx.chooseVideo后续会支持返回thumbTempFilePath
本文网址:http://www.91bianli.com/weixinxiaochengxu/46594.html