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

Volume


Is there any bug or something? Jwplayer 7.3 does not use cookie for volume, so volume is always on same position after reloading page

5 Community Answers

Todd

JW Player Support Agent  
0 rated :

We no longer use cookies to store the volume, as we switched to local storage instead. That being said, I do see that this is not working in 7.3.3 but it was in 7.2.4. I will escalate this to our engineers and update you when I hear back from them.

Todd

JW Player Support Agent  
0 rated :

Our engineers are saying this should be fixed in a future release. My suggestion would be to use a setVolume() call from our Javascript API in the .on(‘ready’) event as a potential workaround. Please see http://support.jwplayer.com/customer/portal/articles/1413089-javascript-api-reference for more details.

Hurrican

User  
3 rated :

OK i have created function with jQuery cookie plugin

_player.on('volume',function()
{
$.cookie("_player_volume", _player.getVolume(), { expires: 365 ,path: '/'});
});
var _player_volume = $.cookie("_player_volume");
if(_player_volume) {
_player.setVolume(_player_volume)
}

d...

User  
0 rated :

Is it just me, or is this still not working in 7.4.2?

Todd

JW Player Support Agent  
0 rated :

Please check again in 7.4.3, as the release notes at https://developer.jwplayer.com/jw-player/docs/developer-guide/release_notes/release_notes_7/ indicate this was resolved.

This question has received the maximum number of answers.