我想每隔5秒从视频中捕捉一帧。
这是我的JavaScript代码:
video.addEventListener('loadeddata', function() {
var duration = video.duration;
var i = 0;
var interval = setInterval(function() {
video.currentTime = i;
generateThumbnail(i);
i = i+5;
if (i > duration) clearInterval(interval);
}, 300);
});
function generateThumbnail(i) {
//generate thumbnail URL data
var context = thecanvas.getContext('2d');
context.drawImage(video, 0, 0, 220, 150);
var dataURL = thecanvas.toDataURL();
//create img
var img = document.createElement('img');
img.setAttribute('src', dataURL);
//append img in container div
document.getElementById('thumbnailContainer').appendChild(img);
}
我遇到的问题是生成的前两个图像是相同的,并且不生成持续时间为5秒的图像。我发现缩略图是在特定时间的视频帧显示在< video>
标记之前生成的。
例如,当video.currentTime = 5
时,生成帧0的图像。然后视频帧跳到5秒。因此,当video.currentTime = 10
时,生成第5帧的图像。
答案 0 :(得分:47)
问题是寻找视频(通过设置它的currentTime
)是异步的。
您需要收听seeked
事件,否则将冒险采用可能是旧值的实际当前帧。
由于它是异步的,所以你不能使用setInterval()
,因为它也是异步的,当你寻找下一帧时你将无法正确同步。没有必要使用setInterval()
,因为我们将使用seeked
事件,而不是保持一切都是同步的。
通过重新编写代码,您可以使用seeked
事件来浏览视频以捕获正确的帧,因为此事件通过设置{{}确保我们实际处于我们请求的帧1}}属性。
示例强>
currentTime
将此事件处理程序添加到聚会:
// global or parent scope of handlers
var video = document.getElementById("video"); // added for clarity: this is needed
var i = 0;
video.addEventListener('loadeddata', function() {
this.currentTime = i;
});
<强> Demo here 强>