Reputation: 81
JW player doesn't play video in loop (repeat video) although required Flags has been mentioned.
<script type='text/javascript'>
jwplayer('mediaspace').setup({
'flashplayer': 'player.swf',
'file': 'vidflv.flv',
'controlbar': 'bottom',
'width': '554',
'height': '370',
'autostart' : true,
'autoplay' : true
'repeat' : true
});
</script>
Upvotes: 4
Views: 3498
Reputation: 436
For those who are looking for loop JWPlayer without extra requests or tracking (Advertisement modes), I found that you can manually add loop
attribute to the video element. In this case, it should work like HTML looped video, but JWPlayer functionality is working well
Upvotes: 0
Reputation: 4201
It looks like you are using JW5 here.
So change:
'repeat' : true
To:
'repeat' : 'always'
Upvotes: 4