Replies: 2 comments
-
In shouldn't be the case ... I think this line can cause the issue: |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hey, we are also facing this, we don't have this prop, our videos are stored on vimeo and we are using HLS, it works correctly on Android, but on ios it starts with super small resolution and only improves once the video has played fully once. const VideoPlayer = useMemo(() => {
return (
<Video
volume={mainVolume}
source={{ uri: src }}
style={styles.video}
repeat
controls={controls}
controlsStyles={{
hideSeekBar: true,
hideSettingButton: true,
}}
mixWithOthers="mix"
resizeMode="cover"
fullscreenAutorotate
playInBackground
playWhenInactive
renderLoader={() => (
<View style={styles.loaderContainer}>
<ActivityIndicator animating />
</View>
)}
paused={false}
/>
);
}, [src]); We are experimenting with removing props etc but nothing seems to be helping |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using React Native Video to stream HLS content, aiming for a setup similar to TikTok. I am facing an issue where, upon navigating away from the video player and returning, the videos remain stuck on the lowest quality and do not upgrade to higher resolutions.
Is there a way to force the player to upgrade to higher qualities?
Can I persist the highest quality a user can utilise and automatically select that for each video?
Here is my current video player configuration:
Beta Was this translation helpful? Give feedback.
All reactions