微信小程序录音

论坛 期权论坛 脚本     
匿名技术用户   2020-12-29 14:54   119   0
 begin: function () {
    var that = this;
    this.recorderManager = wx.getRecorderManager();
    this.recorderManager.onError(function () {
      wx.showToast({
        title: '录音失败',
        icon: 'none'
      })
    });
    this.recorderManager.onStop(function (res) {
      //上传音频
      let starttime = that.data.startTime
      let endtime = that.data.endtime
      if (endtime - starttime < 350) {
        wx.showToast({
          title: '录音太短了,再录一次?',
          icon: 'none'
        })
        return false;
      }
      let urls = '上传录音的地址';
      let cookie = cache.get('session_id');
      //进行上传录音
      wx.uploadFile({
        url: urls,
        filePath: res.tempFilePath,
        name: 'files',
        header: {
          'content-type': 'multipart/form-data',
          cookie: 'PHPSESSID=' + cookie,
        },
        formData: { 'length': that.data.length },//其他附加数据
        success: function (res) {
          console.log(res);
        },
        fail: function (res) {
          console.log(res);
          wx.showModal({
            title: '提示',
            content: "网络请求失败,请确保网络是否正常",
            showCancel: false,
            success: function (res) {

            }
          });
          wx.hideToast();
        }
      });

      console.log(that.data.src);

    });

    this.innerAudioContext = wx.createInnerAudioContext();
    this.innerAudioContext.onError((res) => {
      console.log(res);
      console.log('播放录音');
    })
  },
   //播放录音
   bo:function(){
    this.innerAudioContext.src = '音频地址';
    this.innerAudioContext.play()
    //暂停录音
     this.innerAudioContext.stop()

    }, 

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:7942463
帖子:1588486
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP