反应本机 - 如何获取相机视频的缩略图uri

问题描述 投票:1回答:1

我需要一种在本机反应中显示CameraRoll视频缩略图的方法,我通过将缩略图uri添加到CameraRoll结果解决了android端。现在iOS上有什么方法可以:

  1. 获取视频的缩略图uri(不是base64)。
  2. 或使用视频uri在图像上显示缩略图。
video react-native thumbnails mediastore camera-roll
1个回答
0
投票
    <Video
      ref={videoPlayer => (this.videoPlayer = videoPlayer)}
      source={{ uri: video.uri }}
      style={{ width: '100%', height: '100%' }}
      onLoad={() => {
        this.videoPlayer.seek(2);
      }}
      paused
    />

我用户试图在第二秒拍摄帧。

© www.soinside.com 2019 - 2024. All rights reserved.