Fix video thumbnails

pull/1/head
yflory 7 years ago
parent fd258fc277
commit 41a082c46d

@ -125,13 +125,10 @@ define([
Thumb.fromVideoBlob = function (blob, cb) { Thumb.fromVideoBlob = function (blob, cb) {
var url = URL.createObjectURL(blob); var url = URL.createObjectURL(blob);
var video = document.createElement("VIDEO"); var video = document.createElement("VIDEO");
video.addEventListener('loadedmetadata', function() { video.addEventListener('loadeddata', function() {
video.addEventListener('loadeddata', function() { var D = getResizedDimensions(video, 'video');
var D = getResizedDimensions(video, 'video'); Thumb.fromCanvas(video, D, cb);
Thumb.fromCanvas(video, D, cb); }, false);
});
video.currentTime = Number(Math.floor(Math.min(video.duration/10, 5)));
});
video.addEventListener('error', function (e) { video.addEventListener('error', function (e) {
console.error(e); console.error(e);
cb('ERROR'); cb('ERROR');

Loading…
Cancel
Save