微信小程序有api wx.compressVideo:
// 压缩视频
wx.compressVideo({
sourcePath: 'your_video_path.mp4', // 视频的本地临时文件路径
quality: 'high', // 压缩质量,可选值为 'low'、'medium'、'high'
success(res) {
console.log('视频压缩成功', res.tempFilePath);
// res.tempFilePath 为压缩后的视频临时文件路径
},
fail(err) {
console.error('视频压缩失败', err);
},
});
https://developers.weixin.qq.com/miniprogram/dev/api/media/video/wx.compressVideo.html
但是抖音小程序展示没有提供api,可能未来会有。
网友回复


