JWPlayer 6 embedded playlist without rss / xml !
Dear JW Team,
I have a question and I hope you can help, I'm using jwplayer only for testing purpose (Free version).
What can I say I like to play with codes, I know that the funtionality of JW 6 has changed.
The playlist code I used before in Jw player 5 as you can see below works perfect, but it works not at all in Jw player 6 ??
Could you be so kind to show me (an example) which playlist code will work in JW 6.
Thanks in advance.
[code]
<head>
<center>
<script type='text/javascript' src='/jwplayer.js'></script>
</head>
<div id='jwplayer'></div></div>
<script type='text/javascript'> jwplayer('jwplayer').setup({
'flashplayer': '/jwplayer.flash.swf',
'width': '640',
'height': '360',
'backcolor': '1A1A1A',
'frontcolor': 'C3C3C3',
'lightcolor': 'C8C8C8',
'autostart': 'false',
'playlist.position': "right",
'playlist.size': '240',
'playlist': [{
'file': 'http://mysite/video1.mp4',
'image': 'http://mysite/image1.jpg',
'title': 'The First Video'
},{
'file': 'http://mysite/video2.mp4',
'image': 'http://mysite/image2.jpg',
'title': 'The Second Video'
},{
'file': 'http://mysite/video3.mp4',
'image': 'http://mysite/image3.jpg',
'title': 'The Third Video'
}],
});
</script>
</center>
[/code]