How to control the volume of a media player using jquery / javascript

Posted by Geetha on Stack Overflow See other posts from Stack Overflow or by Geetha
Published on 2010-03-08T10:39:34Z Indexed on 2010/03/08 10:51 UTC
Read the original article Hit count: 611

Hi All,

I am using the following code for media player in asp.net page.

Code:

    <object id="mediaPlayer" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"                         codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" 
                    height="1" standby="Loading Microsoft Windows Media Player components..." 
                    type="application/x-oleobject" width="1">
                    <param name="fileName" value="" />
                    <param name="animationatStart" value="true" />
                    <param name="transparentatStart" value="true" />
                    <param name="autoStart" value="true" />
                    <param name="showControls" value="true" />
                    <param name="volume" value="70"  />
                </object>

Problem:

1. How to set the default value for volume. [I have set it as 70 but showing 40]
2. If volume is zero the system volume also be zero.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about windows-media-player