Hai everyone, I am working with one Image/Video Application using JSP.
In my jsp i need to displaying and playing a video file.
I am using the following Embed tag, for the video file.
<OBJECT
ID="mediaPlayer"
CLASSID= "clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
CODEBASE= "[URL]http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701[/URL]"
TYPE="application/x-oleobject"
STANDBY="Loading media player components..."
HEIGHT="200" WIDTH="250">
<PARAM NAME="showcontrols" VALUE="true">
<PARAM NAME="autostart" VALUE="false">
<PARAM NAME="loop" VALUE="false">
<PARAM NAME="filename" VALUE="photo/video/<%=category%>/<%=image.elementAt(i*4+1)%>">
<EMBED TYPE="video/x-msvideo"
STANDBY="Loading media player components…"
CONTROLLER="true"
CONTROLS="ImageWindow,ControlPanel"
SHOWCONTROLS="true"
AUTOSTART="false"
HEIGHT="200" WIDTH="250"
SRC="photo/video/<%=category%>/<%=image.elementAt(i*4+1)%>" >
</OBJECT>
While using this Embed Tag, such type of video files are not playing(ex: *.flv, *.avi, *.mov, etc.,).
I need to play all types of video files in any browser.
Can anyone help me for this.
Waiting for replies..
Regards
Tamilvanan