2015-01-11 238 views
2

我有一個播放列表。播放列表中的視頻來自Youtube和本地服務器。第一個視頻來自本地服務器,並自動開始播放。第二個視頻來自Youtube,播放不會自動開始。我必須點擊播放。如果第二個視頻也來自本地服務器,它工作正常。JW Player不會在播放列表中自動播放視頻

+0

你能提供一個鏈接? – emaxsaun

+0

分享你的代碼.... – Hitesh

+0

爲什麼你想讓兩個視頻一起開始,用戶只能看到一個視頻,他不會看到兩個視頻,對嗎? – Hitesh

回答

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