wx.chooseVideo录制视频后,加载录制的视频,播放时没有声音。是不是版本更新后出了bug, 而且compressed压缩这个参数,好像没有反应设置了和没设置基本一样的效果。
调试手机: iphone se iOS 11.2.6
微信版本: 6.6.3
基础库: 1.9.91
主要代码:
<view class=“container”>
<video src="{{src}}"></video>
<button bindtap=“bindButtonTap”>获取视频</button>
</view>
js:
bindButtonTap: function () {
var that = this
wx.chooseVideo({
sourceType: [‘camera’],
maxDuration: 10,
camera: ‘front’,
compressed: false,
success: function (res) {
that.setData({
src: res.tempFilePath
})
console.log(res.size);
}
})
},