I'm developing a music player using SoundManager 2 on my website, but I'm now encountering a strange issue with setting the volume.
The user can change to volume on my website using a slider. If the user changes the volume I set a cookie (so the volume is stored for a next visit). This part works great, the volume gets changed and the cookie gets set.
My website: http://new.upcoming-djs.com
My issue:
When I turn the volume down very low (e.g. to 4) and refresh the page the volume slider is set to the correct value (e.g. 4). When I start a track it starts with the correct volume. However when I try to increase the volume I can hear it first decreases and only after that it increases (but never to the maximum volume).
My (simplified) code:
// set base volume
$('header .volume-slider').each(function() {
var slider = $('.slider', this);
var volume = slider.data('volume');
console.log('Initial volume: '+volume);
$('.slider', this).height(volume/2);
});
// play / pause track
var sound;
$(document).on('click', '#snippets .tracks li', function() {
var li = $(this);
console.log('Creating new sound with volume: '+$('header .volume-slider .slider').data('volume'));
sound = soundManager.createSound({
id: li.data('id'),
url: li.data('stream')+'?consumer_key=' + 'htuiRd1JP11Ww0X72T1C3g',
volume: $('header .volume-slider .slider').data('volume')
});
});
// change volume
$('header .volume-slider').mouseup(function(e) {
var pos = e.pageY - $(this).offset().top;
var slider = $('.slider', this);
slider.data('volume', (100-(pos*2)));
var volume = slider.data('volume');
slider.height(volume/2);
if (sound) {
console.log('Setting volume: '+volume);
sound.setVolume(volume);
}
});
Steps to reproduce:
- Go to my site
- Click a track at the left side to start playing
- Change to volume to very low (slider at the top right)
- Now refresh the page
- Click the same track again to start playing
- Now increase the volume with small steps
Why isn't the volume getting set correctly?
