我想展示我的视频快速像instagram卷轴我怎么才能实现?



如果有人解决了这个问题,或者知道细节,一定要在instagram @mujtaba上给我发信息。_2因为我总是在线,无论如何,我已经尝试了很多事情使用flatlist, react-native视频也ffmpeg,我遇到了安装它的问题,是否有一种方法可以快速加载我的视频,就像instagram卷轴一样,我有两到三个项目与我高度依赖于这个功能,所以它会有所帮助。检查下面的代码!

<Video
ref={ref => {
this.player = ref;
}}
// source={{ uri: videoUri }}
onBuffer={this.onBuffer}
onError={this.videoError}
onLoad={() => {
console.log('Video loaded successfully');
this.player.save().then(() => {
console.log('Video saved to cache');
});
}}
style={{
// height: '100%',
// width:'100%',
width: Dimensions.get('window').width,
height: Dimensions.get('window').height
}}
preload="auto"
paused={isPaused}
source={{ uri: videoUri }}
resizeMode={'cover'}
rezize={{ width: 480, height: 650 }}
// maxBitRate={6000000}
// autoplay
repeat={true}
// loop
//   muted
// disableSeek
// fullscreen
/>
</View>
);
}}
/>

我找到了一个react native库,旨在重现Instagram的功能:https://github.com/caglardurmus/react-native-insta-story

希望这对你的项目有帮助!

如果是这样,upvote将非常感谢…谢谢! !:)

相关内容

  • 没有找到相关文章

最新更新