<video :src="videoSrc" controls autoplay style="width: 100%;"></video>
async chooseVideo() {
try {
// 先检查权限
const authStatus = await this.checkAuth()
if (!authStatus) return
// 选择视频(关闭压缩)
const res = await uni.chooseVideo({
sourceType: ['album'],
compressed: false, // 关键修改:关闭压缩
maxDuration: 60 // 限制时长30秒
})
// 统一使用临时路径
this.videoSrc = res.tempFilePath
// 大文件处理提示
if (res.size > 10 * 1024 * 1024) {
uni.showToast({ title: '视频较大,加载可能需要时间', icon: 'none' })
}
} catch (err) {
console.error('视频选择错误:', err)
uni.showToast({
title: '选择失败:' + this.mapErrorCode(err.errCode),
icon: 'none'
})
}
}
大概率是视频编码格式的问题
有人知道吗