Generates screen-shots from video file via HTML Elements
just use video.thumbnail.js
var videoLoader = new VideoThumbnail('/test.mp3');
videoLoader.generate()
.then(function(data){
console.log(data); // this 'data' contains image/base64
var blob = videoLoader.getAsBlob(); // you can get BLOB Object with getAsBlob() function.
console.log(blob);
});
node test_server.js
visit http://localhost:8081/index.html
- Raphi D Lee - Initial work
This project is licensed under the MIT License - see the LICENSE.md file for details
- etc