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

JW Player Autoplaying my Audio File


I have used JWplayer in one of my application.
And when I use to drag the Progress Bar of a PAUSED audio/video.
It AUTOMATICALLY PLAYS the file.
I don' want it to happen, Is there any solution for that?

Thanks

4 Community Answers

Randy

JW Player Support Agent  
0 rated :

Hello,

Thank you for contacting the JW Player support team. You may need to check the autostart feature within your player to ensure the attribute is not set to true. Could you possibly provide a link to your sample page?

Kindly,
Randy

mayank23june

User  
0 rated :

Hello Randy,

I have checked it and tried doing AutoStart to False but nothing is happening.

mayank23june

User  
0 rated :

http://www.streamingwizard.com/faq/jwplayer-variables.asp

this is not my link though but you can also see the same issue here.

Thanks

Randy

JW Player Support Agent  
0 rated :

Hello,

Please try the following code and see if it works for you:

jwplayer().onSeek(function(){
console.log(jwplayer().getState());
setTimeout(function(){
jwplayer().pause(true);
},1);
});

Cheers,
Randy

This question has received the maximum number of answers.