vote up 0 vote down star

I'm creating an audio player program in HTML and Javascript. How can I adjust the volume in my program?

flag
3  
We need more information. How are you decoding the audio? how are you making the sounds? What libraries are you using? – scvalex Jul 4 at 6:43

2 Answers

vote up 0 vote down

I'll assume that you're relying on the browser's default plugin to play the audio files. If you're using WMP through object elements, then you could dynamically change the settings using javascript.

// get the element's DOM reference, replace to fit needs
obj = document.getElementById("player"); 
// set volume, 0=mute, 100=full
obj.Settings.volume = 50;

Combine that with a slider widget (i.e. jQuery UI), and that should work.

reference: http://www.mioplanet.com/rsc/embed_mediaplayer.htm

link|flag
vote up 1 vote down

Changing the volumne requires access to the operating system's audio device driver or some abstraction layer.

The only way to change the volume is on Windows using ActiveX.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.