Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dride/cordova-plugin-video-thumbnail2

PhoneGap/Cordova video thumbnail generator
https://github.com/dride/cordova-plugin-video-thumbnail2

Last synced: about 2 months ago
JSON representation

PhoneGap/Cordova video thumbnail generator

Awesome Lists containing this project

README

        

[![npm version](https://badge.fury.io/js/cordova-plugin-video-thumbnail2.svg)](https://badge.fury.io/js/cordova-plugin-video-thumbnail2)

# cordova-plugin-video-thumbnail

This plugins can generate a thumbnail from a remote or local video file.

## Installation

cordova plugin add cordova-plugin-video-thumbnail2

## Supported Platforms

- Android
- iOS

## Usage

```javascript
window.videoThumbnail
.createThumb({
videoPath: "/video1.mov",
width: 100,
height: 100,
kind: 1 //android only
})
.then(
thumb => {
//base64 encoded thumbnail
},
error => {
//deal with error
}
);
```

References:

https://github.com/lulee007/cordova-plugin-video-thumbnail by [@lulee007](https://github.com/lulee007)