View Full Version : Video Clips


GuitarPlaya08
11-23-2003, 02:42 AM
is there a code that i can use to play video clips on my site (mpg, avi......) thanks

amicus
11-23-2003, 04:48 AM
try this piece of code :)

<object id="mediaplayer" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
<param name="autostart" value="true">
<param name="loop" value="true">
<param name="autorewind" value="true">
<param name="showcontrols" value="true">
<param name="filename" value="videoName.wmv">
</object>

GuitarPlaya08
11-23-2003, 04:56 AM
cool.. i get the windows media player in IE but is mpeg files .mpg and is winamp media file .wmv ??

thanx

amicus
11-23-2003, 05:02 AM
the code should work with wmv, mpeg, mp3, avi and any other files that uses media player and has the correct codec.

GuitarPlaya08
11-23-2003, 03:11 PM
hmm for some reason this doesnt work


<object id="mediaplayer" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
<param name="autostart" value="true">
<param name="loop" value="true">
<param name="autorewind" value="true">
<param name="showcontrols" value="true">
<param name="Video1.mpeg" value="Video1.mpeg">
</object>

amicus
11-23-2003, 03:32 PM
the part that says 'filename' needs to be 'filename' and not the actual file name. weird but true :)

<param name="filename" value="Video1.mpeg">

GuitarPlaya08
11-24-2003, 04:47 AM
THANKS