我正在使用Popcorn.js及其扩展名Popcorn Capture。
我有以下代码:
function setVidPoster() {
var video = Popcorn( '#bzm_video' ), poster;
video.listen( "canplayall", function() {
this.capture({at: 1});
this.currentTime(0);
});
}
我试图将图像作为海报拍摄1秒,但视频播放器实际上移动到1秒并在那里说。从爆米花捕获文档我假设这不是意味着发生,但我无法弄清楚如何将视频移动到开头(currentTime应该从文档中工作)
答案 0 :(得分:2)
不确定你是否还在追求这个,但我在popcorn.capture中捅了一下,并对捕获回购推了一些更改,在某个时间捕获了一张海报,然后回到0.可能想要试一试。
我的最终实现看起来像这样:
document.addEventListener( "DOMContentLoaded", function() {
var p = Popcorn( "#video" );
p.listen( "canplayall", function() {
this.capture({ at: 10 });
});
p.play().pause();
}, false );
但是,我发现爆米花倒带没有任何问题。如果您仍然遇到问题,请发布完整的工作案例,我会看一下:)