Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dride/cordova-plugin-video-thumbnail2
- Owner: dride
- Fork: true (lulee007/cordova-plugin-video-thumbnail)
- Created: 2017-12-17T11:24:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-14T07:59:39.000Z (9 months ago)
- Last Synced: 2024-09-24T15:04:12.497Z (about 2 months ago)
- Language: Java
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)