uniapp上传视频有压缩选项:
uni.chooseVideo({
maxDuration: 60,
count: 1,
compressed:false,//是否压缩所选的视频源文件,默认值为 true,需要压缩。
sourceType: ['camera'],
success: (responent) => {
this.videoPath = responent.tempFilePath;
}
})
网友回复


