用wx.chooseMedia 想要在选择视频的时候限制只能选择时间在15s之内的视频吗?
或者有没有别的什么办法,在选择手机视频的时候,限制只能选择15s之内的视频?
看到了 maxDuration: 10 办法,这个是在录制的时候限制的,有没有选择的时候做限制的?
wx.chooseMedia({
count: 1,
mediaType: ['video'],
sourceType: ['album', 'camera'],
maxDuration: 10,
camera: 'back',
success(res) {
that.setData({
personVideo: res.tempFiles[0].tempFilePath,
})
}
})
if(res.tempFiles[0].duration>15000){ //提示视频过长 }else{ that.setData({ personVideo: res.tempFiles[0].tempFilePath, }) }
你下是想超过这个时间的,都不能选择吗
上传到自己的服务器后做裁剪返回新的视频就好啦
没有办法做到,只能裁剪
https://developers.weixin.qq.com/miniprogram/dev/api/media/video/wx.openVideoEditor.html