我有一个播放列表。播放列表中的视频来自Youtube和本地服务器。第一个视频来自本地服务器并自动开始播放。第二个视频来自Youtube,播放不会自动开始。我必须点击播放。如果第二个视频也来自本地服务器,它可以正常工作。
答案 0 :(得分:0)
它似乎对我有用
<div id="playerContainer">
<div id="player">jwplayer goes here...</div><br/><br/>
<div id="player1">jwplayer goes here...</div>
</div>
jwplayer('player').setup({
file: 'http://video-js.zencoder.com/oceans-clip.mp4',
primary:'html5',
stretching: 'exactfit',
autostart: true,
height:240,
width:360
});
jwplayer('player1').setup({
file: 'https://www.youtube.com/watch?v=nkMgJtb62zA',
primary:'html5',
stretching: 'exactfit',
autostart: true,
height:240,
width:360
});
检查Here