How do I place a video on a web page?

B

Ballerina

Want to have a web page of wedding pictures. Some 30 second video of the
Bride and Groom walking down the cross swords at a naval ceremony. Can you
help me.
\
 
S

Spike

Ballerina

Paste this code in the a HTML Code fragment box and place it where you want
movie to play on your page. Adjust width and height numbers to fit your
needs. Change "xxxxxx.wmf" to the name of your movie file on your server.

<OBJECT id="VIDEO" width="320" height="240"
style="position:absolute; left:0;top:0;"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">

<PARAM NAME="URL" VALUE="xxxxxx.wmf">
<PARAM NAME="SendPlayStateChangeEvents" VALUE="True">
<PARAM NAME="AutoStart" VALUE="True">
<PARAM name="uiMode" value="none">
<PARAM name="PlayCount" value="9999">
</OBJECT>


Spike
 
Top