机型:MI 8 SEarmeabi-v7 微信版本:6.7.3 基础库版本:2.3.2 代码片段: var that = this; wx.chooseVideo({ sourceType: ['album', 'camera'], maxDuration: 60, camera: 'back', success(res) { console.log(res.tempFilePath) that.setData({ src: res.tempFilePath, videoSrc: res.tempFilePath }) that.uploadFile(res.tempFilePath); } })
wx.choosevideo只能选择视频不能拍视频我的代码片段如下: chooseVideo : function() { var that = this wx.chooseVideo({ success : function(res) { that.setData({ video : res.tempFilePath, addVideShow : 0 }) that.formSubmit(); }, fail : function(r) { console.log(r); } }) } 目前在小米se8,红米5上小程序调用wx.chooseVideo,只能选择本地已存在的视频,无法拍摄视频,拍摄完之后出现卡顿、然后直接跳转到小程序首页去了,拍摄的视频也没有保存到手机上!
2018-10-29我也遇到同样的问题,官方是否有解决方案?
wx.choosevideo只能选项视频不能拍视频在用小程序视频接口wx.choosevideo时,发现如果用相册里保存的视频文件,就可以上传服务器并调用,但长度不能大于10秒;而如果选择拍摄,则拍摄的视频既不能保存在手机上,也无法上传服务器并调用。大家还有谁发现这个问题了吗?
2018-10-29