how do I put video in my webpage

admin

Administrator
Staff member
Can anyone tell me the syntax for putting a looped video clip into my webpage and make it fit the window 100%<!--content-->First, state your version of your browser and what browser you are using. Second, state what application your video opens in (i.e. Windows Media Player - version probably matters, QuickTime, ...) Reply with that info and someone might be able to help.<br />
<br />
One thing though, why would you want to fill the screen? It seriously takes a toll on bandwidth! If you don't care about those words, it slows down that page greatly! If you happen to get scrollbars accidentally and try to scroll, the page skips! I don't recommend filling a window with video or images.<!--content-->Windows Media Player Reference:<br />
<!-- m --><a class="postlink" href="http://www.w3schools.com/media/media_playerref.asp">http://www.w3schools.com/media/media_playerref.asp</a><!-- m --><br />
<br />
QuickTime Video References:<br />
<!-- m --><a class="postlink" href="http://www.w3schools.com/media/media_quicktime.asp">http://www.w3schools.com/media/media_quicktime.asp</a><!-- m --><br />
<br />
QuickTime Attribute Reference:<br />
<!-- m --><a class="postlink" href="http://www.apple.com/quicktime/authoring/embed2.html">http://www.apple.com/quicktime/authoring/embed2.html</a><!-- m --><br />
<br />
Note: You will have to convert the <embed> tag from the attribute reference to the <object> and <param> tags from the video reference.<br />
<br />
For example:<br />
<br />
<embed src=http://www.webdeveloper.com/forum/archive/index.php/"sample.mov" width="200" height="240" href="http://dns/foo.mov" autohref="true"></embed><br />
<br />
would be<br />
<br />
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="240" width="200"><br />
<param name="src" value="http://dns/foo.mov"><br />
<param name="autohref" value="true"><br />
</object><br />
<br />
Hope this helps!<!--content-->Thanx Gohankid - think I will give that a miss then if you think it a bad idea..<!--content-->
 
Back
Top