gpt4 book ai didi

javascript - 如何开始预加载同一视频的多个部分/章节

转载 作者:行者123 更新时间:2023-11-28 07:29:42 25 4
gpt4 key购买 nike

我想预加载同一视频的各个章节。这样当有人跳到新章节时就不会出现缓冲。

例如,如果第一章从 00:00 开始,下一章从 00:15 开始,我希望我的播放器提前预加载每章 2-3 秒。

最佳答案

您可以尝试这种方法,但我不确定这是最好的方法:

  • 使用canplay事件。当加载足够的数据(几帧)时它将触发。

  • 每次触发时,请转到下一章并等待它再次触发。

  • 这样做,直到加载所有章节,然后删除该事件并将其视频的 currentTime 设置为 0。

Javascript:

var chapters = [50, 100, 200, 300];
var j = 0;
var vid = document.querySelector('video');

vid.addEventListener('canplay', canplay);

function canplay() {
if (j < chapters.length)
this.currentTime = chapters[j++];
else {
this.removeEventListener('canplay', canplay);
this.currentTime = 0;
}
}

请注意,当您更改currentTime时,浏览器仍然会有一点时间缓冲图像,即使是预加载的图像。

var chapters = [50, 100, 200, 300];
var j = 0;
var vid = document.querySelector('video');

vid.addEventListener('canplay', canplay);

function canplay() {
if (j < chapters.length)
this.currentTime = chapters[j++];
else {
this.removeEventListener('canplay', canplay);
this.currentTime = 0;
// remove the condom
var c = document.querySelector('#condom');
c.parentNode.removeChild(c);
showLinks();
}
}

function showLinks() {
var links = document.querySelector('#links');
links.innerHTML = "";
for (var i = 0; i < chapters.length; i++) {
var c = document.createElement('a');
c.href = "#";
// add an attribute to store the chapter time
c.chapter = chapters[i];
c.addEventListener('click', function(e) {
e.preventDefault();
// set the video to our time
vid.currentTime = this.chapter;
});
c.innerHTML = 'chapter' + i;
links.appendChild(c);
}
}
html,body{ margin:0 }
a { margin:.5em; }
#condom{ position:absolute; top:0; left:0; height:170px; width:303px; z-index:9999; background:rgba(255,255,255, 0.7); text-align:center; }
#condom>span{ position:relative; top:50%; transform:translateY(-50%); }
<video controls="true" preload="auto" height="170">
<source type="video/ogg" src="http://media.w3.org/2010/05/bunny/movie.ogv">
<source type="video/mp4" src="http://media.w3.org/2010/05/bunny/movie.mp4">
</video>
<div id="links"></div>
<div id="condom"><span>Your video is loading</span></div>

优点:它可以满足您的要求。

缺点:您必须等待一段时间才能首次加载。

可能的解决方法,使用两个视频,一个现在可以播放,另一个带有章节,将替换第一个视频:

var chapters = [50, 100, 200, 300];
var j = 0;
var vid = document.querySelector('#withChapters');
var first = document.querySelector("#first");
vid.addEventListener('canplay', canplay);

function canplay() {
if (j < chapters.length)
this.currentTime = chapters[j++];
else {
this.removeEventListener('canplay', canplay);
// We're not playing the first video ?
if (first.paused) {
// set us to its current position
this.currentTime = first.currentTime;
// remove the old one and let's replace it
first.parentNode.removeChild(first);
this.style.display = "block";
}//else we'll do it later
//anyway, show the links now
showLinks();
}
}

function showLinks() {
var links = document.querySelector('#links');
links.innerHTML = "";
for (var i = 0; i < chapters.length; i++) {
var c = document.createElement('a');
c.className = "chapter_links";
c.href = "#";
// add an attribute to store the chapter time
c.chapter = chapters[i];
c.addEventListener('click', function(e) {
e.preventDefault();
// set the video to our time
vid.currentTime = this.chapter;
// he's still there?
if (first) {
// And he's playing ? so are we
if (!first.paused) vid.play();
// anyway, now is "later"
first.parentNode.removeChild(first);
vid.style.display = "block";
}
});
c.innerHTML = 'chapter' + i;
links.appendChild(c);
}
}
a { margin: .5em; }
<video id="first" controls preload="auto" height="170">
<source type="video/ogg" src="http://media.w3.org/2010/05/bunny/movie.ogv">
<source type="video/mp4" src="http://media.w3.org/2010/05/bunny/movie.mp4">
</video>
<video id="withChapters" style="display:none" controls preload="auto" height="170">
<source type="video/ogg" src="http://media.w3.org/2010/05/bunny/movie.ogv">
<source type="video/mp4" src="http://media.w3.org/2010/05/bunny/movie.mp4">
</video>
<div id="links">Please wait while chapters are loading ...</div>

优点:解决了第一个片段的问题。

缺点:由于您将同时加载两个视频,因此章节的加载将花费更多时间,并且第一个视频的播放可能会受到影响。

关于javascript - 如何开始预加载同一视频的多个部分/章节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29259555/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com