user3064303
user3064303

Reputation: 81

JW Player does not repeat video

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

Answers (2)

Oleksandr Pyrozhok
Oleksandr Pyrozhok

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

emaxsaun
emaxsaun

Reputation: 4201

It looks like you are using JW5 here.

So change:

'repeat' : true

To:

'repeat' : 'always'

Upvotes: 4

Related Questions