美图手机录制视频失败

发布于 6 年前作者 xiuying227762 次浏览最后编辑 6 年前来自 ask

用户反馈美图手机选择视频后一直走的失败的回调。

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,
        })
      }
    })
0 回复
暂无回复