
Cannot Load External XML File
I'm trying to load a playlist from an external file .xml on Amazon Web Service, but I'm getting this error: "Error loading player: no playable source found".
here's a shorten version of the .xml file:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:bc="http://www.brightcove.tv/link" xmlns:cs="http://www.cinesport.com/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:ap="http://ap.org/">
<channel>
<title>MSN</title>
<link></link>
<atom:link href="http://msn.cinesport.com/rss.xml" rel="self" type="application/rss+xml" />
<description />
<item>
<title>Wake Up: Hanley Saves Pomeranz</title>
<link>
http://msn.cinesport.com/msn-sports-video/wake-hanley-saves-pomeranz/
</link>
<description>
On today's Wake Up With Wilbur, Boston.com columnist Eric Wilbur talks about Drew Pomeranz’s one bad inning in his debut and Hanley Ramirez’s monster three home run performance.
</description>
<guid isPermaLink="false">msn-sports-video/wake-hanley-saves-pomeranz</guid>
<pubDate>Thu, 21 Jul 2016 08:16:07 GMT</pubDate>
<media:keywords>
mlb,baltimore orioles,baseball,Hanley Ramirez,boston red sox,drew pomeranz
</media:keywords>
<media:thumbnail url="http://wpc.493C.edgecastcdn.net/80493C/csprtovp-input/HqoN8Cgh6gRJnwZBa7mK/072116-wilbur.jpg"/>
<media:fullstill url="http://wpc.493C.edgecastcdn.net/80493C/csprtovp-input/HqoN8Cgh6gRJnwZBa7mK/072116-wilbur.jpg"/>
<media:category scheme="urn:dm:channel">sport</media:category>
<bc:titleid>HqoN8Cgh6gRJnwZBa7mK</bc:titleid>
<bc:duration>151641</bc:duration>
<cs:embedlink>
http://msn.cinesport.com/embed/msn-sports-video/wake-hanley-saves-pomeranz/
</cs:embedlink>
<cs:embedcode>
<![CDATA[
<div style="height: 0; padding-top: 25px; padding-bottom: 57.25%; margin-bottom: 10px; position: relative; overflow: hidden;"><iframe id="inline-csprt-wake-hanley-saves-pomeranz" name="inline-csprt-wake-hanley-saves-pomeranz" frameborder="0" align="top,left" marginheight="0" marginwidth="0" scrolling="no" width="100%" height="100%" style="top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" src="http://msn.cinesport.com/embed/msn-sports-video/wake-hanley-saves-pomeranz/"></iframe></div>
]]>
</cs:embedcode>
<cs:oembed>
http://msn.cinesport.com/msn-sports-video/wake-hanley-saves-pomeranz/oembed.json
</cs:oembed>
</item>
</channel>
</rss>
and in the HTML file I have this:
<script type="text/javascript">
var playerInstance = jwplayer("video-container");
playerInstance.setup({
height:627,
controls: true,
playlist: "https://s3.amazonaws.com/bucket/nameOfFile.xml"
});
</script>
Any help would be appreciated.
Thanks!