wx.chooseVideo({
sourceType: tempSourceType,
compressed: true,
maxDuration: 15,
success: (res) => {
console.log('选取视频', res);
if (res.duration > 15) {
wx.showToast({
title: '视频时长不可超过15秒',
icon: 'none',
duration: 3000
})
return false;
}
let tempFilePath = res.tempFilePath;
this.upload(tempFilePath, 'video');
},
fail: (err) => {
console.log('选取视频失败', err);
logger.error('选取视频失败', err);
}
});
客户视频:
你好,是出现卡顿现象吗?还是拿不到res的临时路径?麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
在视频中有问题复现路径
OPPO Reno
Android 7.1
微信客户端 7.0.18
基础库 2.12.2
代码片段:https://developers.weixin.qq.com/s/YfXQhlmV7XkV
2020-09-10
Android
客户端 7.0.18
基础库 2.12.2