View Single Post
  #1 (permalink)  
Old Dec 14th, 2007, 11:00
pathikjhalavadia pathikjhalavadia is offline
New Member
Join Date: Dec 2007
Location: India
Age: 20
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
How to put videos on webpage???

I want to put all types of videos on my webpage. So far I hav suceeded in putting up .avi files by using the following code:
HTML: Select all
<!--[if IE]> 
<object id="WMP" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="320" height="240"> 
<param name="URL" value="http://example.com/videometafile.asx"> 
</object> 
<![endif]--> 
<!--[if!IE]> <--> 
<object id="WMP" type="video/x-ms-asf" data="http://example.com/videometafile.asx" width="320" height="240"> 
<param name="src" value="http://example.com/videometafile.asx"> 
</object> 
<!--> <![endif]--> 
Where videometafile.asx is a text file which contains
HTML: Select all
<asx version="3.0"> 
<entry> 
<ref href="actual-video.wmv" /> 
</entry> 
</asx> 

Please suggest me way to put up .rm, .rmvb, .ram, .flv videos on my webpage. Thanking you in advance.

Last edited by Marc; Dec 14th, 2007 at 11:03. Reason: added [html] tags.
Reply With Quote