HTML Gurus

SpinnerBait_Nut

Honorary Moderator Emeritus
Joined
Aug 25, 2002
Messages
17,651
Any HTML gurus in the house?<br /><br />Need to know some codes to insert a short 2 or 3 second video into a webpage.<br /><br />Any one got any ideas?
 

CCrew

Chief Petty Officer
Joined
Sep 10, 2003
Messages
416
Re: HTML Gurus

You want to embed it in the page, or just a link to it so it can be downloaded? Link is just a standard call <a href="filename">like calling another html page, but specify the movie file instead. <br /><br />Embedding the movie is a bit more convoluted <embed src> call but isn't that hard. <br /><br />-Roger
 

SpinnerBait_Nut

Honorary Moderator Emeritus
Joined
Aug 25, 2002
Messages
17,651
Re: HTML Gurus

Originally posted by CCrew:<br />You want to embed it in the page, or just a link to it so it can be downloaded? Link is just a standard call <a href="filename">like calling another html page, but specify the movie file instead. <br /><br />Embedding the movie is a bit more convoluted <embed src> call but isn't that hard. <br /><br />-Roger
Thanks Roger. I was wanting it to show up on the main page when someone went to the website.
 

ndemge

Commander
Joined
Jul 15, 2002
Messages
2,644
Re: HTML Gurus

Below is some code stolen from www.entensity.net<br /><br />for embeded playing of a video in .wmv (windows media player) should work for other formats that are playable in media player...<br /><br /><td background="http://www.entensity.net/images/pushplay.gif" style="background-repeat: no-repeat" bordercolor="#000000" bgcolor="#EFEFEF"><br /><object id="MediaPlayer1" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Microsoft Windows Media Player components..."><br /> <PARAM NAME="fileName"<br />VALUE ="mario.wmv"><br /> <PARAM NAME="animationatStart" VALUE="true"><br /> <PARAM NAME="transparentatStart" VALUE="true"><br /> <PARAM NAME="autoStart" VALUE="false"><br /> <PARAM NAME="showControls" VALUE="true"><br /> <PARAM NAME="ShowStatusBar" VALUE="True"><br /><EMBED TYPE="application/x-mplayer2" PLUGINSPAGE="http://microsoft.com/windows/mediaplayer/en/download" <br /> ID=MediaPlayer <br /> Name="mp_426289569"<br /> Width="320" <br /> Height="311" <br /> Src="mario.wmv" <br /> AutoSize="1" <br /> AutoStart="0" <br /> ClickToPlay="1" <br /> DisplaySize="0" <br /> EnableContextMenu="1" <br /> EnableFullScreenControls="1" <br /> EnableTracker="1" <br /> Mute="0" <br /> PlayCount="1" <br /> ShowControls="1" <br /> ShowAudioControls="1" <br /> ShowDisplay="0" <br /> ShowGotoBar="0" <br /> ShowPositionControls="1" <br /> ShowStatusBar="1" <br /> ShowTracker="1"> <br /> </EMBED><br /> </OBJECT></td><br /> </tr>
 
Top