小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.compressVideo苹果手机压缩视频不成功,安卓手机压缩很慢
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
刚试了iOS压缩还是不起作用
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
if (data && data.size) {
if(((data.size)/1000000)>50){
// Taro.showToast({
// title: '大于10M要压缩'
// });
Taro.showLoading({
title: '视频压缩中',
});
if (wx.compressVideo) {
console.log('开始压缩', wx, data.tempFilePath)
wx.compressVideo({
src: data.tempFilePath,
quality: 'low', //low的话压缩后视频小
// bitrate: 1032,
// fps: 24,
// resolution:0.5,
success(respose){
console.log('压缩成功',respose)
// Taro.showToast({
// title: '压缩成功'
// });
Taro.hideLoading();
resolve(respose);
},
fail(err){
console.log('压缩失败')
Taro.hideLoading();
Taro.showToast({
title: '压缩失败'
});
reject(err)
},
});
} else {
Taro.showToast({
title: '没有这个api'
});
console.log('没有')
}
} else {
resolve(data);
}
}
刚试了iOS压缩还是不起作用