Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

jwplayer seek not working after the jwplayer update (version 7.6)


I am using latest jwplayer version (7.6). After the update seek function is not working. This is my code

jwplayer('player').setup ({
'file': video_url,
'provider': 'video',
'width': '640',
'height': '420',
'image': image_url,
'autostart': false,
'primary': 'flash'
}).seek(300);

I tried jwplayer beforePlay() function instead of seek but it doesn't made any change.

How can I achieve this..?

1 Community Answers

George

JW Player Support Agent  
1 rated :

Hi,

You’ll want to use:

.on(‘firstFrame’,function(){
jwplayer().seek(300);
});

This question has received the maximum number of answers.