收藏
回答

微信小程序,tts ,字母h,s,m无法读出来?

微信小程序 同声传译 字母h 读不出来,设置中文就是速度,设置英文就没有声音,plugin.textToSpeech({

   lang: 'zh_CN',

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

1 个回答

  • Riven.
    Riven.
    2021-12-20

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2021-12-20
    有用
    回复 5
    • vendor
      vendor
      2021-12-20
      机型 小米redmi note 9 微信版本 8.0.16,Android 11,就是h 读成速度,设置英文没有声音,M,S也没有,这个和机型有关系?
      2021-12-20
      回复
    • vendor
      vendor
      2021-12-20
      plugin.textToSpeech({
            lang: "zh_CN",
            tts: true,
            content: 'h h h',
            success: function (res) {
              console.log(res);
              console.log("succ tts", res.filename);
              let audioContent = wx.createInnerAudioContext()
              console.log(" tts success")
              audioContent.autoplay = true;
              audioContent.src = res.filename;
             audioContent.play()
             audioContent.onEnded(() => {
              console.log(" tts over")
              //中文结束
              that.setData({
                indicatorDots:true
              })
              wx.setKeepScreenOn({
                keepScreenOn: false,
              })
            })
           },
            fail: function (res) {
              console.log("fail tts", res)
              that.setData({
                indicatorDots:true
              })
            }
          })
      2021-12-20
      回复
    • vendor
      vendor
      2021-12-20
      这个h读不出来
      2021-12-20
      回复
    • Riven.
      Riven.
      2021-12-21回复vendor
      我们核实下,有进展会同步
      2021-12-21
      回复
    • vendor
      vendor
      2021-12-21
      希望快点,现在都用中文代替
      2021-12-21
      回复
登录 后发表内容