IOS调用wx.choosevideo录制视频之后,播放该视频,视频没有声音(有时候录的视频有声音,有时候没有声音,略神奇…)。
微信版本:6.6.0
基础库版本:1.7.2
ios:11.2.1、11.0.3
<video src="{{tempMediaPath}}" controls></video>
Page({
data: {
tempMediaPath: ‘’,
},
onLoad: function (options) {
setTimeout(this.chooseVideo, 300);//ios只设置使用camera在onLoad调不起来,加上延时可以
},
chooseVideo() {
var that = this
wx.chooseVideo({
sourceType: [‘camera’],
maxDuration: 10,
camera: ‘back’,
success: function (res) {
that.setData({
tempMediaPath: res.tempFilePath
})
}
})
},
})