微信jsdk錄音功能

需求描述
製作一個H5頁面,打開之後可以錄音,並將錄音文件提交至後臺

aa1.jpg
aa2.jpg
aa3.jpg
aa4.jpg
aa5.jpg

微信錄音最長時長爲1min

微信官方文檔--音頻接口
代碼如下

    // isVoice: 0-未錄音  1-錄音中  2-錄完音 
    //  點擊錄音/錄音中 按鈕展示
      <div class="vm-voice-box" v-show="isVoice < 2">
        <p v-show="!isVoice" @click="voiceStart">點擊錄音</p>
        <img v-show="isVoice" @click="voiceEnd" src="../../xxx/ico-voice.png" alt="">
      </div>
      
    //  isListen   // 0-未試聽/試聽結束  1-試聽中  2-暫停試聽
    //  錄完音  按鈕展示
      <div class="vm-voice-player" v-show="isVoice ==  2">
        <div class="vm-vp-button">
          <p class="vm-vp-revoice" @click="openMask(0)">重錄</p>
          <p class="vm-vp-submit" :class="{'vm-vp-no-submit' : isSubmit}" @click="openMask(1)">提交</p>
          <p class="vm-vp-pause" v-show="!isListen" @click="play">試聽</p>
          <p class="vm-vp-pause" v-show="isListen==1" @click="pause">| |</p>
          <p class="vm-vp-pause vm-vp-border" v-show="isListen==2" @click="play"> ▶ </p>
        </div>
      </div>
      
      data() {
          return {
            id: '',
            startTime: 0,
            recordTimer: null,
            localId: '', // 錄音本地id
            serverId: '', // 錄音微信服務id
            showMask: false,
            tip: 1, //提交  0- 重錄
            isVoice: 0, // 0-未錄音  1-錄音中  2-錄完音
            isListen: 0, // 0-未試聽/試聽結束  1-試聽中  2-暫停試聽
            data1: 0,
            work: {},
            isPlay: false,  // 是否播放
            isSubmit: false, // 是否已提交
          }
     }
      
      
      // 微信配置
      getConfig() {
        let _url = encodeURIComponent(window.location.href)
        // 後臺提供接口,傳入當前url(返回基礎配置信息)
        voiceApi.wechatConfig(_url)
        .then(res => {
            if (res.data.code == 200) {
              wx.config({
                debug: false,
                appId: res.data.content.appid,
                timestamp: res.data.content.timestamp, // 必填,生成簽名的時間戳
                nonceStr: res.data.content.nonceStr, // 必填,生成簽名的隨機串
                signature: res.data.content.signature, // 必填,簽名
                // 需要授權的api接口
                jsApiList: [
                    'startRecord', 'stopRecord', 'onVoiceRecordEnd', 'uploadVoice', 'downloadVoice', 'playVoice', 'pauseVoice', 'onVoicePlayEnd'
                ]
              })
          wx.ready( () => {
            wx.onVoiceRecordEnd({
                // 錄音時間超過一分鐘沒有停止的時候會執行 complete 回調
                complete: function (res) {
                  _this.isVoice = 2
                  _this.localId = res.localId;
                }
            })
          })
        }
    })
  },
  // 開始錄音
  voiceStart(event) {
    let _this = this
    event.preventDefault()
    // 延時後錄音,避免誤操作
    this.recordTimer = setTimeout(function() {
      wx.startRecord({
        success: function() {
          _this.startTime = new Date().getTime()
          _this.isVoice = 1
        },
        cancel: function() {
          _this.isVoice = 0
        }
      })
    }, 300)
  },
  // 停止錄音
  voiceEnd(event) {
    this.isVoice = 2
    let _this = this
    event.preventDefault()
    // 間隔太短
    if (new Date().getTime() - this.startTime < 300) {
      this.startTime = 0
      // 不錄音
      clearTimeout(this.recordTimer)
    } else {
      wx.stopRecord({
        success: function(res) {
        // 微信生成的localId,此時語音還未上傳至微信服務器
          _this.localId = res.localId
        },
        fail: function(res) {
          console.log(JSON.stringify(res))
        }
      })
    }
  },
  
  // 試聽
  tryListen() {
    let _this = this
    wx.playVoice({
      localId: _this.localId // 需要播放的音頻的本地ID,由stopRecord接口獲得
    })
    console.log('試聽。。。')
    wx.onVoicePlayEnd({  // 監聽播放結束
        success: function (res) {
          console.log('試聽監聽結束')
          _this.isListen = 0
        }
    });
  },
  // 試聽停止
  tryStop() {
    let _this = this
    wx.pauseVoice({
      localId: _this.localId // 需要停止的音頻的本地ID,由stopRecord接口獲得
    })
  },
  
  
  // 處理錄音數據
  voiceHandle() {
    let _this = this
    wx.uploadVoice({
      localId: this.localId, // 需要上傳的音頻的本地ID,由stopRecord接口獲得
      isShowProgressTips: 1, // 默認爲1,顯示進度提示
      success: function (res) {
      // 微信語音已上傳至 微信服務器並返回一個服務器id
        _this.serverId = res.serverId; // 返回音頻的服務器端ID
        _this.upVoice()
      }
    })
  },
  // 自己後臺上傳接口
  upVoice() {
    let data = {
      id: this.id,
      serviceId: this.serverId
    }
    voiceApi.upVoice(data)
    .then(res => {
      if(res.data.code == 200) {
        // !! todo  隱藏loading
        this.isSubmit = true
        this.$Message.message('提交成功')
        this.closeMask()
      } else {
        this.$Message.message(res.data.message)
      }
    })
    .catch(err => {
      console.log(err)
    })
  },
**1. 微信jsdk配置**
**2. 調取微信錄音開始方法  wx.startRecord**
**3. 調取微信錄音結束方法  wx.stopRecord**
成功後返回一個本地音頻id  localId
⚠️ 如果不調用錄音結束方法,待錄音1min後自動結束,需要wx.onVoiceRecordEnd 監聽錄音結束
**4. 上傳錄音至微信服務器  wx.uploadVoice**
返回serverId
⚠️ 微信存儲時間有限,有效期3天
⚠️ 目前多媒體文件下載接口的頻率限制爲10000次/天,如需要調高頻率,請登錄微信公衆平臺,在開發 - 接口權限的列表中,申請提高臨時上限。
**5. 調取自己後臺上傳至自己服務器**
這部可以看做,將 serverId 傳給自己的服務器,然後自己服務器調微信提供的接口去下載(serverId)至自己服務器存儲
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章