使用视频的第一帧作为缩略图

Sha*_*lam 5 react-native react-native-ios react-native-video

我正在使用反应本机视频

它有一个名为的道具poster,运行良好。但我的要求是从视频中获取缩略图(视频的第一帧)。如果我不使用poster(接受网址),那么它会显示空白屏幕。

知道如何使用视频的第一帧作为缩略图吗?

谢谢你!!!

imK*_*shh 9

您可以使用onLoad回调函数来实现它,

const player = useRef(null);
Run Code Online (Sandbox Code Playgroud)
<Video
  source={{uri: uri}}
  ref={player}
  paused={true}
  style={styles.backgroundVideo}
  onLoad={() => {
    player.current.seek(0); // this will set first frame of video as thumbnail
  }}
/>
Run Code Online (Sandbox Code Playgroud)

有关道具的更多详细信息onLoad此处