Publishing a video on my Web Site

  • Thread starter Thread starter Parra
  • Start date Start date
P

Parra

Hi:
I like to know how i can publish my movie crearted with
MSMMaker 2.0 in my Home Web Site.
Thanks...
 
Just copy the WMV file to your web space and provide a link to the file.

PapaJohn
 
Parra said:
Hi:
I like to know how i can publish my movie crearted with
MSMMaker 2.0 in my Home Web Site.

Here is the code for one of the pages on my site...

<html>
<head>
<title>Sept. 2003</title>
</head>
<body bgcolor="#2693FF" text="black" link="blue" vlink="purple"
alink="red" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"
background="../images/main.jpg">
<p align="center">
&nbsp;
</p>
<table align="center" border="0" cellspacing="0" width="1"
height="1" bordercolordark="#015EA0" bordercolorlight="#00BCFF"
cellpadding="0" bgcolor="white" style="border-width:9px;
border-style:groove;">
<tr>
<td>
<p align="center">
<object
classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" id="OCX1"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.
cab#Version=6,4,5,715" width="428" height="304" align="absmiddle">
<param name="rate" value="1">
<param name="balance" value="0">
<param name="currentPosition" value="0">
<param name="playCount" value="1">
<param name="autoStart" value="true">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="true">
<param name="volume" value="68">
<param name="mute" value="false">
<param name="uiMode" value="full">
<param name="stretchToFit" value="false">
<param name="windowlessVideo" value="false">
<param name="enabled" value="true">
<param name="enableContextMenu" value="true">
<param name="fullScreen" value="false">
<param name="enableErrorDialogs" value="true">
<param name="_cx" value="11324">
<param name="_cy" value="8043">
<param name="URL"
value="http://the-kellys.org/video/2003_09_web.asf">
</object>
</p>
</td>
</tr>
</table>
</body>
</html>

Now all you need do is replace <param name="URL"
value="http://the-kellys.org/video/2003_09_web.asf"> with the address for
where your video is stored...I have used an ASF file but you can just as
easily use a WVM. You will also need to consider the size (Width and Height)
of your video...from the above you will see that mine is set to an aspect
ratio of 16:9 plus the height of the controls (Width = 428 and Height = 304)
These numbers are not cast in stone...I had to experiment to find the values
that best suited my video.

You can see this page in action in the video section of www.the-kellys.org

Hope this helps...If not ask.

All the best.....
 
ARGHHHH for WVM below, please read WMV ...Blasted dyslexic keyboard!!!...and
yes I had to get the spell checker on Dyslexic!!!
 
Back
Top