收藏
回答

通过wx.startRecord录制的音频的问题

通过wx.startRecord录制的音频,记录下path后,通过wx.playVoice可以播放。

但是,将论文件上传至服务器后,在其他界面下载下来却播放不了,出现如下错误?请问应该如何处理?thanks!

其他界面播放代码如下:

this.audioCtx = wx.createInnerAudioContext();

 playRecord: function(t) {

    console.log("playRecord:" +JSON.stringify(t));

    const audioSource = 'http://......' + t.currentTarget.dataset.src;

    console.log('audioSource:' + audioSource);

    this.audioCtx.autoplay = true;

    this.startTime = 0;

    this.audioCtx.src = audioSource;

    this.audioCtx.play();

    this.audioCtx.onPlay(() => {

      console.log('开始播放');

    })

    this.audioCtx.onError((res) => {

      console.log(res.errMsg);

      console.log(res.errCode);

    })

  },


报如下错误:




回答关注问题邀请回答
收藏

2 个回答

  • Mr.Hope
    Mr.Hope
    2018-11-22

    给个代码片段?

    2018-11-22
    有用 1
    回复 2
    • 且听真言
      且听真言
      2018-11-22

      谢谢,今天再研究下

      2018-11-22
      回复
    • 且听真言
      且听真言
      2018-11-22回复且听真言

      问题找到了,

      录音生成的默认都是silk格式,但是wx.createInnerAudioContext不支持silk格式



      2018-11-22
      回复
  • 且听真言
    且听真言
    2018-11-22

    问题找到了,

    录音生成的默认都是silk格式,但是wx.createInnerAudioContext不支持silk格式


    2018-11-22
    有用
    回复
登录 后发表内容