phuochau / react-native-thumbnail

Get thumbnail from local media. Currently, it only supports for video.
MIT License
135 stars 104 forks source link

Thumbnails are blurry #33

Open watadarkstar opened 5 years ago

watadarkstar commented 5 years ago

Most of the time the thumbnails are blurry. I'm taking the videos with react-native-camera like so:

const options = {
      quality: RNCamera.Constants.VideoQuality["480p"],
      mute: true
      // maxDuration: 60 * 3
    };
...
const data = await this.camera.recordAsync(options);
...
<RNCamera
          ref={this.createRef}
          style={styles.cameraStyles}
          type={this.state.camera.type}
          flashMode={this.state.camera.flashMode}
          onFocusChanged={() => {}}
          onZoomChanged={() => {}}
          defaultTouchToFocus
          mirrorImage={false}
        />

Any way to improve the thumbnail quality?

nicoara commented 5 years ago

Hello @watadarkstar . since maybe you are subscribed to this issue, can you take a look at issue #35 ? I have posted it and I am afraid there is not much oversight on this forum from the developer, based on your issues as well. Many thanks!

watadarkstar commented 5 years ago

@nicoara Sure I took a look and sent you a response.