Need a simple way to run through a playlist once and stop at the end, using the "repeat" parameter. Is there another option that will do this without looping through the list. I understand the following loops the playlist indefinately which is not what is needed.
<script type="text/javascript">
jwplayer('mediaplayer').setup({
'autostart': 'true',
'flashplayer': 'player.swf',
'id': 'playerID',
'width': '560',
'height': '315',
'playlist': [{
'file': '/video/video1.mp4',
'image': '/thumbs/video1.jpg',
'title': 'The first video'
},{
'file': '/video/video2.mp4',
'image': '/thumbs/video2.jpg',
'title': 'The second video'
},{
'file': '/video/video3.mp4',
'image': '/thumbs/video3.jpg',
'title': 'The third video'
}],
repeat: 'always'
});
</script>
what about using repeat: 'single'?
have you tried this?