wx.chooseMedia({
count: 1,
sourceType: ['camera'],
mediaType: ['video'],
maxDuration: 10,
camera: 'front',
success(res) {
// 读取视频base64
wx.getFileSystemManager().readFile({
filePath: res.tempFiles[0].tempFilePath,
encoding: 'base64',
success(rep) {
console.log(rep)
},
});
}
});
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)