Rank: Advanced Member Groups: Member
Joined: 1/31/2008 Posts: 48 Points: 144 Location: GB
|
showing video (.wmv) file in web pagehi every body does any body have any idea how to show video file in web page using javascripts?
|
Rank: Advanced Member Groups: Member
Joined: 11/9/2007 Posts: 559 Points: 1,008 Location: GB
|
showing video (.wmv) file in web pagetry following code see if it works for you Code:
<OBJECT ID="MediaPlayer" width="200" height="200" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/ mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Media Player" type="application/x-oleobject"><PARAM NAME="FileName" VALUE='Video URL'><PARAM NAME="AutoStart" Value="True"><PARAM NAME="ShowControls" VALUE="True"><PARAM NAME="ShowStatusBar" VALUE="False"><EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC='Video URL' width="500" height="200" name="MediaPlayer" autostart="True" ShowStatusBar=0 ShowControls=1 ></EMBED></OBJECT>
|