
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
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
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
Hello Randy,
I have checked it and tried doing AutoStart to False but nothing is happening.
http://www.streamingwizard.com/faq/jwplayer-variables.asp
this is not my link though but you can also see the same issue here.
Thanks
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