how can I adjust volume in my program? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T04:00:38Zhttp://stackoverflow.com/feeds/question/1081675http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081675/how-can-i-adjust-volume-in-my-program0how can I adjust volume in my program?jafar2009-07-04T06:39:11Z2009-07-04T21:31:58Z
<p>I'm creating an audio player program in HTML and Javascript. How can I adjust the volume in my program?</p>
http://stackoverflow.com/questions/1081675/how-can-i-adjust-volume-in-my-program/1081734#10817341Answer by DR for how can I adjust volume in my program?DR2009-07-04T07:34:46Z2009-07-04T07:34:46Z<p>Changing the volumne requires access to the operating system's audio device driver or some abstraction layer.</p>
<p>The only way to change the volume is on Windows using ActiveX. </p>
http://stackoverflow.com/questions/1081675/how-can-i-adjust-volume-in-my-program/1083010#10830100Answer by thezachperson31 for how can I adjust volume in my program?thezachperson312009-07-04T21:31:58Z2009-07-04T21:31:58Z<p>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. </p>
<pre><code>// get the element's DOM reference, replace to fit needs
obj = document.getElementById("player");
// set volume, 0=mute, 100=full
obj.Settings.volume = 50;
</code></pre>
<p>Combine that with a slider widget (i.e. <a href="http://jqueryui.com/" rel="nofollow">jQuery UI</a>), and that should work. </p>
<p>reference: <a href="http://www.mioplanet.com/rsc/embed%5Fmediaplayer.htm" rel="nofollow">http://www.mioplanet.com/rsc/embed_mediaplayer.htm</a></p>