很抱歉我对此主题缺乏了解
我有一个更改视频播放器来源的脚本。它就是这样。唯一的问题是Video.js播放器播放分配给它的第一个源。
document.getElementById("vid-player_html5_api").innerHTML = "";
document.getElementById("vid-player_html5_api").innerHTML = "<source src='" + link + "' type='video/mp4'>";
document.getElementById("vid-player_html5_api").muted = false;
因此,如果有两个按钮,并且您单击了按钮1 ,它将更改播放器的来源并显示正确的视频。然后让我们说你点击了按钮2 它会改变播放器的来源,但它仍会显示与按钮1显示的视频相同
事实证明,它改变了源代码,我检查了Chrome开发工具,确实已经改变了源代码
答案 0 :(得分:1)
您可以尝试以下方式,
function playVideo(videoSource, type) {
var videoElm = document.getElementById('testVideo');
var videoSourceElm = document.getElementById('testVideoSource');
if (!videoElm.paused) {
videoElm.pause();
}
videoSourceElm.src = videoSource;
videoSourceElm.type = type;
videoElm.load();
videoElm.play();
}
<video id="testVideo" width="400" controls>
<source id="testVideoSource">
</video>
<br/>
<input type="button" value="Play Video 1" onclick="playVideo('http://www.w3schools.com/html/mov_bbb.mp4', 'video/mp4')" />
<input type="button" value="Play Video 2" onclick="playVideo('http://www.w3schools.com/html/mov_bbb.ogg', 'video/ogg')" />
答案 1 :(得分:0)
加载新视频后,您需要再次调用video.js:
var current_vid = document.getElementById("vid-player_html5_api")
var next_vid = document.createElement('video');
next_vid.innerHTML = '<source src="' + link + '" type="video/mp4">';
next_vid.muted = false;
current_vid.parentNode.replaceChild( next_vid, current_vid );
videojs(current_vid, {}, function(){
// do something when video.js is ready
});
答案 2 :(得分:0)
刚刚发现这篇文章,VideoJS中的当前模式是使用例如JSON对象设置.src
player.src({ type: 'video/mp4', src: new_url });
答案 3 :(得分:0)
与我合作的唯一方式就是这样
var player = videojs(document.querySelector('.video-js'));
player.src({
src: 'videoURL,
type: 'video/mp4'/*video type*/
});
player.play();