1.index.wxml文件中的代码是:
<video id="myvideo" src="{{mediaUrl}}" controls="true"></video>
<button type="primary" bindtap="choosemedia">选择视频</button>
2.index.js文件中的代码是:
Page({
data: {
mediaUrl:""
},
choosemedia(){
var that=this;
wx.chooseMedia({
count: 9,
mediaType:'video',
sourceType: 'camera',
maxDuration: 60,
camera: 'back',
success(res) {
console.log(res.tempFiles[0].tempFilePath)
that.setData({
mediaUrl:res.tempFiles[0].tempFilePath
})
}
})
},
编译运行,可以选择视频,但是无法播放。请高手给指点一下。
经测试,可以播放