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.