An open API service indexing awesome lists of open source software.

https://github.com/guiseek/video-preview

Video preview thumbnails generator
https://github.com/guiseek/video-preview

html javascript thumbnail-generator thumbnails typescript vanilla video web

Last synced: 10 months ago
JSON representation

Video preview thumbnails generator

Awesome Lists containing this project

README

          

# Video preview thumbnail generator

## Usage

```ts
const size = 320
const ratio = 16 / 9
const url = 'web-standards-for-the-future.mp4'

loadVideo(src, ratio, size)
.then(drawThumbs)
.then((canvas) => {
document.body.append(canvas)
})
```

## Demo

Access [Demo here](https://guiseek.github.io/video-preview/)

![Demo print screen](./assets/print.png)