
Error 1085
I am having problem using playlists with an embedded JWPlayer.
It is a Drupal 6 installation.
Player plays well if I point to a file in the same folder instead of a playlist.
I get the following error:
Task Queue failed at step 5: Playlist could not get loaded: Error #1085
The embed code is:
bc.. <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'
id='mediaplayer1'
name='mediaplayer1'
width='675'
height='520'>
<param name='movie' value='/jwplayer/player.swf'>
<param name='allowfullscreen' value='true'>
<param name='allowscriptaccess' value='always'>
<param name='bgcolor' value='#000000'>
<param name='wmode' value='opaque'>
<param name='flashvars' value='playlistfile=/sites/default/files/judging/judginglist.xml'>
<param name='flashvars' value='playlist.position=right'>
<param name='flashvars' value='playlist.size=300'>
<param name='flashvars' value='controlbar=over'>
<embed
id='mediaplayer1'
name='mediaplayer2'
src='/jwplayer/player.swf'
width='675'
height='520'
allowfullscreen='true'
allowscriptaccess='always'
bgcolor='#000000'
wmode='opaque'
flashvars='playlistfile=/sites/default/files/judging/judginglist.xml'
flashvars='playlist.position=right'
flashvars='playlist.size=300'
flashvars='controlbar=over'
/>
</object>
The playlist content is:
bc.. <rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>Judging Playlist</title>
<item>
<title>Robotrashers</title>
<media:content url="/sites/default/files/judging/Seq2Sub1.mp4" />
</item>
<item>
<title>Calvin Woolfolk</title>
<media:content url="/sites/default/files/judging/Seq2Sub2.mp4" />
</item>
<item>
<title>VillaVisuals</title>
<media:content url="/sites/default/files/judging/Seq2Sub3.mp4" />
</item>
</channel>
</rss>
Any help would be greatly appreciated!