52

我想每 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 帧的图像。然后视频帧跳转到时间 5s。因此,当 时video.currentTime = 10,生成第 5s 帧的图像。

4

1 回答 1

62

原因

问题是寻找视频(通过设置它currentTime)是异步的。

您需要收听该seeked事件,否则它将冒着获取可能是您的旧值的实际当前帧的风险。

由于它是异步的,因此您不能使用它,setInterval()因为它也是异步的,并且在寻找下一帧时您将无法正确同步。无需使用setInterval(),因为我们将使用该seeked事件来保持一切同步。

解决方案

通过稍微重写代码,您可以使用该seeked事件来遍历视频以捕获正确的帧,因为此事件可确保我们实际上位于通过设置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;
});

将此事件处理程序添加到聚会:

video.addEventListener('seeked', function() {

  // now video has seeked and current frames will show
  // at the time as we expect
  generateThumbnail(i);

  // when frame is captured, increase here by 5 seconds
  i += 5;

  // if we are not past end, seek to next interval
  if (i <= this.duration) {
    // this will trigger another seeked event
    this.currentTime = i;
  }
  else {
    // Done!, next action
  }
});
于 2013-10-04T07:55:53.550 回答