Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. Go to my site
  2. Click a track at the left side to start playing
  3. Change to volume to very low (slider at the top right)
  4. Now refresh the page
  5. Click the same track again to start playing
  6. Now increase the volume with small steps

Why isn't the volume getting set correctly?

share|improve this question
(@Charles, see Why was the tag removed from my question? if you like. Thanks!) – Arjan Dec 25 '11 at 12:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.