收藏
回答

视频在手机上为什么不能播放?

<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'

})

}

}

回答关注问题邀请回答
收藏

3 个回答

  • 社区技术运营专员--许涛
    社区技术运营专员--许涛
    星期三 16:01

    星期三 16:01
    有用
    回复
  • 随風飄扬
    随風飄扬
    星期三 15:45

    大概率是视频编码格式的问题

    星期三 15:45
    有用
    回复
  • LH
    LH
    星期三 13:53

    有人知道吗

    星期三 13:53
    有用
    回复
登录 后发表内容