收藏
回答

同声传译报错?

// 触摸开始
  touchStart: function (e) {
    console.log('touchStart', e);
    manager.start({
      lang: "zh_CN",
      format: 'mp3'
    });
  },
  // 触摸结束
  touchEnd: function (e) {
    console.log('touchEnd', e);
    manager.stop();
  },
  // 实时监测变化调用这些方法
  onShow: function (e) {
    manager.onRecognize = function (res) {
      console.log("current result", res.result)
    }
    manager.onStop = function (res) {
      console.log("record file path", res.tempFilePath)
      console.log("result", res.result)
    }
    manager.onStart = function (res) {
      console.log("成功开始录音识别", res)
    }
    manager.onError = function (res) {
      console.error("error msg", res.msg)
    }
  },

  <button bind:touchstart="touchStart"bind:touchend="touchEnd" type='primary'><text wx:if="{{luStatu}}">松开结束</text> <text wx:else>按住说话 </text></button>

 报错:error msg record manager record failed
 版本:0.3.3
 iOS:12.4.1


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

1 个回答

  • 疯狂的小辣椒
    疯狂的小辣椒
    2020-03-30

    你好,能否正常使用流式录音接口

    2020-03-30
    有用
    回复 3
    • 轩!
      轩!
      2020-03-31
      已经解决了,可能是RecordRecognitionManager创建是的作用范围问题
      2020-03-31
      回复
    • 最惨官方
      最惨官方
      2020-05-02回复轩!
      楼主是变量作用域吗?我的也出现的这个错误,到现在没有解决,求楼主赐教
      2020-05-02
      回复
    • い安好
      い安好
      2021-02-19
      台式机如果没有插入麦克风,会直接提示失败,如果用的是台式机的话,建议插个麦克风。
      2021-02-19
      回复
登录 后发表内容
问题标签