收藏
回答

<audio src= 不能播放微信自己录制成的silk文件

公司名称

北京蚂蚁玖玖浏览器技术开发中心 www.myie9.com

MP帐号(邮箱)


开发者微信号


机型(如iPhone 6s plus)


操作系统(如iOS 9.3)


是否必现


出现时间


操作路径(即如何操作可以复现该问题)


问题描述(具体问题介绍)


问题截图(客户端问题界面截图)


代码片段截图





 



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

1 个回答

  • 郭峰
    郭峰
    2017-01-04

      <view class="section section_gap" style="text-align: center;">

            <audio src="{{tempFilePath}}" poster="{{userInfo.avatarUrl}}" name="{{userInfo.nickName}}的声音" author="可点击左边播放按钮" action="{{audioAction}}" controls></audio>

          </view>


    下面方法录制成的silk文件不能被上面的播放,iphoneSE, 必现

    startRecord: function () {

        this.setData({ recording: true })

        var that = this

        var interval = setInterval(function () {

          that.data.recordTime += 1

          that.setData({

            formatedRecordTime: util.formatTime(that.data.recordTime)

          })

        }, 1000)

        wx.startRecord({

          success: function (res) {

            that.setData({

              hasRecord: true,

              tempFilePath: res.tempFilePath,

              formatedPlayTime: util.formatTime(that.data.playTime)

            })

          },

          complete: function () {

            that.setData({ recording: false })

            clearInterval(interval)

          }

        })

      },


    2017-01-04
    有用
    回复
登录 后发表内容