对于 react-native 而不是 ... react-native-video 有什么好的视频播放器吗

Is it any good Video player for react-native rather then ... react-native-video

<Video
    source={{
      uri:
        'VID',
    }}
    style={styles.video}
    controls={true}
    resizeMode={'cover'}
    paused={paused}
    selectedVideoTrack={{
      type: 'resolution',
      value: 360,
}}/>

React Native 没有 Video 组件,因此您可能正在使用 Expo

import { Video } from 'expo-av'; // https://docs.expo.io/versions/v40.0.0/sdk/video

否则,react-native-video 是普通(非 Expo)React Native 应用程序的绝佳选择,我们也已经在商业上使用了多年。

我们使用异步存储实现了缓存,但似乎也至少 partially supported