In my app i've list of videos like instagram and what i want to is to preload first frame of video so when user opens app they don't have to wait until it load. I am using react-native-video. I can not cached video because its utilising too much memory and getting crash. Any help/suggestion appreciated.
Asked
Active
Viewed 2,249 times
2
-
you can use `poster` prop, value is image url to show while video is loading https://github.com/react-native-video/react-native-video#poster – Václav Ryska May 05 '21 at 12:50
-
@VáclavRyska same implementation is already there but client's requirement is that when user click on full-screen mode for video then it should start immediately, that's why I need to preload the first frame – Hari Krishnani May 05 '21 at 13:08