cordova-plugin-video-thumbnail
Advanced tools
Comparing version 2.0.0 to 2.0.1
{ | ||
"name": "cordova-plugin-video-thumbnail", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Create video thumbnails from video file paths on Android.", | ||
@@ -5,0 +5,0 @@ "cordova": { |
@@ -15,14 +15,14 @@ # cordova-plugin-video-thumbnail | ||
### Parameters | ||
## Parameters | ||
<dl> | ||
<dt>fileURI</dt> | ||
<dd>Path to video on the device</dd> | ||
**fileURI** | ||
<dt>callback(err, imageData)</dt> | ||
<dd>This function will be fired when the plugin has finished processing. If an error has occurred 'err' will be populated, otherwise, it will be null and imageData will contain a base64 string.</dd> | ||
</dl> | ||
Path to video on the device | ||
### Example | ||
**callback(err, imageData)** | ||
This function will be fired when the plugin has finished processing. If an error has occurred 'err' will be populated, otherwise, it will be null and imageData will contain a base64 string. | ||
## Example | ||
```js | ||
@@ -29,0 +29,0 @@ navigator.createThumbnail(fileURI, function(err, imageData) { |
Sorry, the diff of this file is not supported yet
7393