blurhash_video 0.0.2 copy "blurhash_video: ^0.0.2" to clipboard
blurhash_video: ^0.0.2 copied to clipboard

Generate blur hashes for an entire video file

About #

Blurhash algorithm applied to sequence of images extracted from video file

Preview #

Video preview

Getting started #

Include latest version from pub.dev to pubspec.yaml

Usage #

// generate sorted list of blurhashes from video 
final hashes = await BlurhashVideo.generateBlurHashes(
  path: path, // video file location 
  fps: 24, // video fps is used by default
  duration: 7, // in seconds
);