247ursites
10-20-2003, 05:24 PM
I have like three short video clips i want website viewers to see on my website how do i manage that?
Where do i start? they are digital video movie clips.
I would really appreaciate the help!
What file format are they?
Vito
247ursites
10-20-2003, 05:36 PM
Type: video clip
is what it says, i previewed them on windows media player
Firefuze
10-20-2003, 05:41 PM
You can just put them into html. If they are .mov (quicktime) they'll stream automatically. You can also put it into flash and make it a swf.
You can just point to the wmv file and an external Windows Media Player will automatically open up and play the movie.
Alternatively, you can "embed" the player into your web page:
----------------------------------------------------------------------------
<OBJECT classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" width="320" height="256">
<PARAM NAME="SRC" VALUE="http://path/to/wmv">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="false">
<PARAM NAME="showControls" VALUE="true">
<PARAM NAME="showStatusBar" VALUE="true">
<EMBED type="application/x-mplayer2" pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/"
SRC="http://path/to/wmv" width="320" height="256" ShowStatusBar="1" AutoStart="0">
</EMBED>
</OBJECT>
----------------------------------------------------------------------------
The example above is sized for a 320x240 wmv.
The <object> tag addresses IE and the <embed> tag addresses NS.
Set autostart to false if you want the user to have to click to start the movie. Setting it to true will start it upon loading of the page.
The other parameters are pretty self explanatory. There are also other tags that you can add, but this is the basic setup.
Vito
DennyTang
10-22-2003, 09:49 PM
If you use frontpage you can download a script that lets you put a movie or playlist on a page with a wizard. You can download it at the microsoft frontpage addon website.
jordane
11-16-2003, 02:35 PM
I will like to pass video mpeg4 in stream on my Web site, but how to
make?