uniapp中nvue里使用uni.ffmpeg.compressVideo(报TypeError: Cannot read properties of undefined (reading 'compressVideo')
时间: 2024-04-22 20:24:18 浏览: 159
很抱歉,我之前提到的 `uni-ffmpeg` 插件并不支持在 nvue 中使用。在 nvue 中,你可以使用 `uni.compressVideo` 方法来实现视频压缩。下面是一个示例代码:
```vue
<template>
<view>
<button @click="chooseVideo">选择视频</button>
<button @click="compressAndUpload">压缩并上传</button>
</view>
</template>
<script>
export default {
methods: {
// 选择视频文件
chooseVideo() {
uni.chooseVideo({
success: (res) => {
this.videoPath = res.tempFilePath
}
})
},
// 压缩并上传视频文件
compressAndUpload() {
uni.compressVideo({
src: this.videoPath,
quality: 10,
success: (res) => {
const compressedVideoPath = res.tempFilePath
// 上传压缩后的视频文件
uni.uploadFile({
url: 'your_upload_url',
filePath: compressedVideoPath,
name: 'file',
success: (res) => {
console.log('上传成功', res)
},
fail: (err) => {
console.log('上传失败', err)
}
})
},
fail: (err) => {
console.log('视频压缩失败', err)
}
})
}
}
}
</script>
```
请注意,`uni.compressVideo` 方法的参数和返回值可能会根据不同的平台和版本有所不同,请确保你使用的是最新的 UniApp 版本,并查阅官方文档以获取更详细的信息和示例代码。
阅读全文
相关推荐
![-](https://img-home.csdnimg.cn/images/20241231045053.png)
![-](https://img-home.csdnimg.cn/images/20241231044833.png)
![-](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![dll](https://img-home.csdnimg.cn/images/20250102104920.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![gz](https://img-home.csdnimg.cn/images/20210720083447.png)
![-](https://img-home.csdnimg.cn/images/20241231044955.png)