2014-08-28 56 views
1

我收到 「錯誤加載播放列表:錯誤加載文件」jwplayer - 收到 「錯誤加載播放列表:錯誤加載文件」

HTML頁面...

<!DOCTYPE html> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
    <title></title> 
    <script src="/Players/jwplayer6.8.js"></script> 
    <script src="/Players/jwplayer.html5.js"></script> 
</head> 
<body> 
    <div id="divPlayer"></div> 
     <script type="text/javascript"> 
      jwplayer('divPlayer').setup({ 
       playlist: 'http://media.howdoyouguru.com/guru/130438044361506556/2c4f8cc1-6142-441a-85e3-393f8614d4b3.xml', 
       width: 640, 
       height: 380 
      }) 
     </script> 
</body> 
</html> 

RSS文件...

<rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:jwplayer="http://developer.longtailvideo.com/trac/wiki/FlashFormats" version="2.0"> 
    <channel> 
     <title>GURU Online Playlist</title> 
     <item> 
      <title>Custom Audio 10 seconds past Video</title> 
      <jwplayer:source file="http://media.howdoyouguru.com/guru/130438044361506556/ab66f56f-f43c-4a7e-b858-9c616c592044.mp4"/> 
      <jwplayer:image url="http://media.howdoyouguru.com/guru/130438044361506556/52e36daf-b731-4607-bead-24354bd851c8.jpg"/> 
     </item> 
    </channel> 
</rss> 

我已經出到每一個文件,以確保它的存在和MP4文件將在URL中的文件,如果類型播放。

URL是test.howdoyouguru.com/test.html

感謝您的幫助。 Gary

+0

您的鏈接已關閉。 '/'應用程序中的服務器錯誤。編輯錯誤 說明:編譯服務此請求所需的資源時出錯請查看以下具體的錯誤細節並適當修改您的源代碼。 – emaxsaun 2014-08-28 21:30:49

回答

1

您的鏈接test.howdoyouguru.com/test.html起作用。試圖加載XML文件這個錯誤防止jwplayer加載XML文件

XMLHttpRequest cannot load http://media.howdoyouguru.com/guru/130438044361506556/2c4f8cc1-6142-441a-85e3-393f8614d4b3.xml. 
No 'Access-Control-Allow-Origin' header is present on the requested resource. 
Origin 'http://test.howdoyouguru.com' is therefore not allowed access. 

訪問控制允許來源頭添加到您的XML,然後它會工作時

編輯

如何啓用CORS

http://enable-cors.org/server_iis7.html

+0

我已將crossdomain.xml設置爲。如果我仍然需要標題,你是否有一個例子?謝謝 – Gary 2014-08-28 20:55:37

+0

crossdomain.xml是用於flash。看我的編輯 – Ben 2014-08-28 21:46:09