Media player hide control

Posted by Geetha on Stack Overflow See other posts from Stack Overflow or by Geetha
Published on 2010-04-16T06:57:18Z Indexed on 2010/04/16 7:13 UTC
Read the original article Hit count: 158

Filed under:
|

Hi All,

I am using the following code to play video in asp.net application. I want to hide the mediaplayer default controls.

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" width="480" height="270"
         standby="Loading Microsoft Windows Media Player components..." 
         type="application/x-oleobject">
         <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="150" />
         <param name="loop" value="false"  />
         <param name="windowlessVideo" value="true" />
  </object>

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about mediaplayer