How do I add a Window Media Player Video to a Web Page

P

Pernst

I have a short movie clip that opens with Window Media Player that I want to
have as part of my Web page. How can I add it to my Web Page?
 
D

Don Schmidt

You could upload the file to your website and make a link to the file on
your webpage.
\
 
S

Spike

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 your file or url to the url and the name of your movie file on
your ISP

Spike


<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="your file or url">
<PARAM NAME="SendPlayStateChangeEvents" VALUE="True">
<PARAM NAME="AutoStart" VALUE="True">
<PARAM name="uiMode" value="none">
<PARAM name="PlayCount" value="9999">
</OBJECT>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top