美图手机录制视频失败
用户反馈美图手机选择视频后一直走的失败的回调。
wx.chooseVideo({ sourceType: [ "camera" ], maxDuration: 30, success: function (res) { _this.setData({ videoUrl: res.tempFilePath, }); if (res.duration < 10){ wx.showModal({ title: '' , content: '视频需大于10秒!' , showCancel: false }) } }, fail: function (res) { common.log(res); wx.showModal({ title: '视频录制失败' , content: res.errMsg, }) } }) |