收藏
回答

微信同声传译插件录音后,若用户没说话,调用stop也无法终止当前录音,需要过个十几秒后才能开启下次录

问题类型 插件 AppID 插件版本号 AppID 微信版本 基础库版本
Bug wx069ba97219f66d99 0.3.6 wxbbbfce0c64bd8d85 8.0.54 3.7.5

 //识别语音初始化

  initRecord() {

    const that = this;

    manager.onStart = function (res) {

      that.setData({

        recordState: true, //录音状态

      })

    }

    manager.onError = function (res) {

      that.setData({

        recordState: false,

      });

      const tips = {

        '-30003': '说话时间间隔太短,无法识别语音',

        '-30004': '没有听清,请再说一次~',

        '-30011': '上个录音正在识别中,请稍后尝试',

      };

      const retcode = res?.retcode.toString();

      retcode &&

        wx.showToast({

          title: tips[`${retcode}`],

          icon: 'none',

          duration: 2000,

        });

    }


    //识别结束事件

    manager.onStop = function (res) {

        wx.showModal({

          title: '提示',

          content: '听不清楚,请重新说一遍!',

          showCancel: false,

        })

        return;

      }

      let _res = res.result.replace(/[,,。!?,.!?]/g, ' ');

      that.setData({

        searchKey: _res

      })

    }

  },

  //按住说话

  touchStart(event) {

      manager.start({

              duration: 30000,

              lang: 'zh_CN',

      })

  },

  //松开结束

  touchEnd(e) {

    this.setData({

      recordState: false,

    })

    manager.stop();

  },

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

5 个回答

  • 久美旦增
    久美旦增
    星期三 10:57

    给官方写邮件了,不知道他会不会去修复


    星期三 10:57
    有用
    回复
  • ㊣゜
    ㊣゜
    星期二 14:20

    狗日的插件,这bug还不修复

    星期二 14:20
    有用
    回复
  • 你猜
    你猜
    星期一 14:21

    同样的问题

    星期一 14:21
    有用
    回复
  • Aaron
    Aaron
    03-13

    建议换方案,这问题应该3年左右了。。。

    03-13
    有用
    回复 1
    • 恭喜發財
      恭喜發財
      03-17
      有什么方案可以换
      03-17
      回复
  • Cooper
    Cooper
    01-17

    类似的问题,其他人也提过:

    https://developers.weixin.qq.com/community/develop/doc/000c26b9988dd87ded50df89d67800?_at=1737084530872

    可以尝试提示下用户,用弹窗 loading,临时解决下,然后等官方修复。

    01-17
    有用
    回复 1
    • ㊣゜
      ㊣゜
      星期二 14:20
      链接打不开
      星期二 14:20
      回复
登录 后发表内容