收藏
回答

美图手机录制视频失败

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 Bug wx.chooseVideo 客户端 Android 6.6.6 1.9.1

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

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,
        })
      }
    })



回答关注问题邀请回答
收藏
登录 后发表内容