
JWPlayer - Shuffle/Repeat & Fullscreen/Autoplay
I'm trying to do two things.
1) Use jwplayer to pull from a playlist and shuffle all items in that playlist. Once all items have played, start over. When I set shuffle to 'true' what happens is it is too true of a shuffle. I've got 5 videos in there right now and it seems to play the same video twice in a row often. Also it will do something like: 1, 1, 3, 4, 1, 3, 3' and skip videos 2 and 5. Is it possible to force shuffle on the entire playlist and not repeat a video until all items in the playlist are complete? I've even see it do the same video 3 times in a row which is bad.
2) How do you do a true fullscreen with autoplay command? The best I can figure is setting height and width to 100% but there's still a half inch border around the video with a white background.
If I can get these two things fixed, the company I work for will probably buy a few hundred licenses over the next year. I just have to get it working is all. Also I assume once we buy licenses the "jwplayer" logo will no longer appear in the lower left corner when a video starts to play?
Here's the code I'm using right now (shuffle is disabled because of the repeat video issue mentioned above)
bc.. <script type='text/javascript'>
jwplayer('mediaspace').setup({
'flashplayer': '/jwplayer/player.swf',
'playlistfile': 'rss.xml',
'controlbar': 'none',
'dock': 'false',
'autostart': 'true',
'icons': 'false',
'width': '100%',
'height': '100%',
'repeat': 'always',
'shuffle': 'false'
});
</script>