调用原生相机分辨率
- 当前 Bug 的表现(可附上截图)
所有手机上传上阿里云的视频都是270*480的分辨率,太低了
- 预期表现
更高的分辨率,比如1920*1080
- 复现路径
- 提供一个最简复现 Demo
wx.chooseVideo({
sourceType: [‘camera’],
maxDuration: 10,
success: (res) => {
console.log(res)
// duration,height,tempFilePath,width
if (res.duration > 10) {
showToast(‘text’, ‘建议10秒左右的视频’)
return
}
},
})