收藏
回答

同声传译插件翻译时长为什么只有40秒

问题类型 插件 AppID 插件版本号 AppID 微信版本 基础库版本
Bug wx069ba97219f66d99 0.2.2 wx6374460e8d43d911 7.0.3 2.6.5 [238]

- 当前 Bug 的表现(可附上截图)


- 预期表现


- 复现路径


- 提供一个最简复现 Demo


同声传译插件翻译时长为什么只有40秒,超过40秒就不再翻译了

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

4 个回答

  • 庄严劫
    庄严劫
    2020-03-08

    同求解决 一般30多秒就不在返回结果 随后报-30004

    2020-03-08
    有用
    回复
  • 鎏嫣宫守护
    鎏嫣宫守护
    2020-03-02

    插件是不更新了吗,现在已经是2020年3月2号了,快一年了这个问题,还是这样呢。这个翻译的场景可能没想过几分钟一直录着翻译。。。

    2020-03-02
    有用
    回复
  • 隋随
    隋随
    2019-04-08

    //点击开始录音

    recordStart: function() {

    this.recordStartControl();

    wx.showToast({

    title: '语音识别中...',

    icon: 'loading',

    duration: 10000

    })

    manager.start(this.data.tips_language);


    },

    recordStop: function() {

    this.data.end=true;

    this.setData({

    recordType: {

    recordType: 'recordStop',

    gray: true,

    count: this.data.recordType.count,

    zongcount: this.data.question.length

    }

    })

    // 识别结束事件

    wx.showToast({

    title: '语义理解中…',

    icon: 'loading',

    duration: 10000

    })

    manager.stop();

    // this.recordStopControl();

    },

    initRecord: function() {

    var that = this;

    //有新的识别内容返回,则会调用此事件

    manager.onRecognize = (res) => {

    console.log(res)

    that.setData({

    daan: res.result

    });

    }

    manager.onStart = function(res) {

    wx.hideToast()

    }

    manager.onError = function(res) {

    console.error("error msg", res.msg);

    console.log(res)

    that.data.recordresult = that.data.daan;

    if (that.data.end){

    that.recordStopControl();

    }

    }

    manager.onStop = (res) => {

    console.log("识别结束");

    that.data.recordresult = res.result;

    if(that.data.end){

    that.recordStopControl();

    }




    同声传译,语音识别功能时长60s,但是实践发现文字识别在45s左右文字就不在识别,onRecognize,不在返回结果。

    官方例子,面对面翻译也是一样。


    2019-04-08
    有用
    回复
  • 是小白啊
    是小白啊
    2019-04-08

    麻烦提供下复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),以及截图,目前应该是1分钟的最大录音时长

    2019-04-08
    有用
    回复 1
    • Clevo
      Clevo
      2019-07-16
      我也是这个问题,发现大于40秒一定报错,30秒有的时候会报错
      2019-07-16
      回复
登录 后发表内容