react-native-video 中的失真
Posted
技术标签:
【中文标题】react-native-video 中的失真【英文标题】:Distortion in react-native-video 【发布时间】:2021-04-09 14:48:46 【问题描述】:我在 react-native-video 中遇到视频失真(不是每次),我在下面附上快照
为视频组件附加代码sn-p
<Video
controls=false
onLoad=onLoad
onBuffer=onBuffer
onLoadStart=onLoadStart
onProgress=onProgress
onEnd=onEnd
paused=!play
ref=videoPlayer
resizeMode=screenType
source=
uri: getSourceHls(),
style=
position: 'absolute',
top: 0,
left: 0,
bottom: 0,
right: 0,
width: '100%',
height: '100%',
backgroundColor: Colors.background,
volume=10
/>
谁能指导我我错过了什么/做错了什么?
【问题讨论】:
【参考方案1】:我也遇到了 react-native-video (4.4.5) 的类似问题,我也一直在尝试找到一些解决方案。就我而言,并非总是在所有视频中都发生这种情况,而是在某些移动设备上发生。在将版本从 4.4.5 升级到 5.1.1 后,我看到了改进,我目前正在监控。我会要求您尝试将 react-native-video 升级到最新(5.1.1),这应该会给您带来一些好处。
【讨论】:
以上是关于react-native-video 中的失真的主要内容,如果未能解决你的问题,请参考以下文章
当我单击 react-native-video 播放器中的硬件后退按钮时如何锁定 LandScape 模式?