
rss playlist and preview image (not showing in player)
Hi there,
My dynamically created rss playlist works like a charm but preview images get only shown as thumbnail in the playlist and not for the main player. Is this intended behaviour or is there something wrong in either my setup or somewhere else?
index.html:
bc.. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>VoD</title>
</head>
<body style="color: rgb(0, 0, 0); background-color: rgb(102, 102, 102);">
<script type="text/javascript" src="jwplayer.js" ></script>
<center><div id="player" style="text-align:center; vertical-align:middle;">Loading the player ...</div></center>
<script type="text/javascript">
jwplayer("player").setup({
playlist: "vod.php",
height: 760,
listbar: {
position: 'bottom',
size: 200
},
width: 960
});
</script>
</body>
</html>
created rss playlist:
bc.. <rss version="2.0" xmlns:jwplayer="domain"> <channel> <title>VoD</title> <item> <title>file2</title> <description>test files</description><jwplayer:image>"file2.jpg"</jwplayer:image><jwplayer:source file="file2.mp4" /> </item> <item> <title>file1</title> <description>test files</description><jwplayer:image>"file1.jpg"</jwplayer:image><jwplayer:source file="file1.mp4" /> </item> </channel> </rss>
I'll be happy to give you more information if that is needed.