问题描述
"expo-video-player"软件包有问题.我想通过expo-video-player播放视频,但是在加载组件时会引发错误,并且我不知道如何解决,所以我需要帮助.
I have a problem with 'expo-video-player' package. I want to show a video through expo-video-player but when I load the component it throws an error and I don't know how to resolve it, so I need help..
我尝试过更改软件包的源代码和组件props,但是它不起作用
I've tried change the package source code and the component props but it doesn't works
以下是代码:(来自expo-video-player的示例代码)
Here is the code: (Example code from expo-video-player)
import { Video } from 'expo'
import VideoPlayer from 'expo-video-player'
<VideoPlayer
videoProps={{
shouldPlay: true,
resizeMode: Video.RESIZE_MODE_CONTAIN,
source: {
uri: 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4',
},
}}
isPortrait={true}
playFromPositionMillis={0}
/>
这是错误:
有人可以帮助我吗?谢谢
Can anyone help me? Thanks
推荐答案
此问题是由Expo SDK 33创建的,其中一些模块已从核心中删除.
This issue was created by Expo SDK 33, where some modules has been removed from the core.
升级到最新版本(1.3.0
).它在这里固定.
Upgrade to the latest version (1.3.0
). It is fixed here.
https://www.npmjs.com/package/expo-video-player
这篇关于expo-video-player出现问题,它引发错误:setAudioModeAsync的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!