How to use wmf format video in html ?

Dev

New member
The wmf video file should be played by embedded VLC player in website.
I have used the code given below. But the video is working in mozilla and not working in IE 6.0. I cant use streaming server. I am going to use HTTP Streaming only. So give me solution.

The Code is,
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab" align="middle" id="vlc" events="True">
<param name="Src" value="video/test.wmv"></param>
<param name="ShowDisplay" value="True" ></param>
<param name="AutoLoop" value="no"></param>
<param name="AutoPlay" value="yes"></param>
<embed src="video/test.wmv" loop="no" align="middle" type="application/x-google-vlc-plugin" name="vlcfirefox" autoplay="yes" target="video/test.wmv"></embed>
</object>
 
Back
Top