收藏
回答

iphone使用airpod时调用任意录音接口会十分卡顿

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug RecorderManager 客户端 7.0.3 2.6.6

微信小程序在ios下使用airpod无线耳机时,调用任意的录音接口都会十分的卡顿,虽然录制过程没有报错,但是卡顿的过程久,十分影响业务流程


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

2 个回答

  • 灵芝
    灵芝
    2019-04-28

    麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2019-04-28
    有用
    回复 3
    • alan🥱
      alan🥱
      2019-04-28

      我在评论已经回复了,就是调用任意的录音接口,例如getRecorderManage().start(),但是是要ios下使用airpod才能复现问题

      2019-04-28
      回复
    • 灵芝
      灵芝
      2019-04-28回复alan🥱

      麻烦提供这种格式的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

      2019-04-28
      回复
    • alan🥱
      alan🥱
      2019-04-28

      我发现我是找错了方向,原来的bug我还以为是因为这里的卡顿导致的,但发现是其他原因,谢啦,但是卡顿的情况是实际存在的

      2019-04-28
      回复
  • alan🥱
    alan🥱
    2019-04-28
    this.recorder = wx.getRecorderManager()
    // 这里参数自定义
    let options = {
                    sampleRate: config.sampleRate,
                    numberOfChannels: 1,
                    encodeBitRate: config.encodeBitRate,
                    format: 'mp3',
                    audioSource: audioSource
                }
    this.recorder.start(options)

    这里提供下代码片段

    2019-04-28
    有用
    回复
登录 后发表内容