|
-
January 30th, 2002, 12:59 PM
#1
video on websites
Can anyone give me info on how to put a video on a website so you don't have to download it to view the video? I'm using Microsoft FrontPage 2000. Any info would be greatly appreciated.
-
January 30th, 2002, 01:44 PM
#2
EXAMPLE; http://www.boomspeed.com/lukeg/EmbedMediaPlayer.html
<OBJECT
ID="mediaPlayer"
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="fileName"
VALUE="http://dev2.bvgroup.co.uk/films/mpeg/q-si1.mpg">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="true">
<PARAM NAME="showControls" VALUE="true">
</OBJECT>
[This message has been edited by lukeg (edited 01-30-2002).]
-
January 30th, 2002, 01:58 PM
#3
This one runs the mpeg instantly from media player "embedded" inside a web page, the mpeg is in My Documents\Media and is called 1.mpeg
=============================================
<OBJECT
ID="mediaPlayer"
CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="fileName"
VALUE="C:\My Documents\Media\1.mpeg">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="true">
<PARAM NAME="showControls" VALUE="true">
</OBJECT>
-
February 2nd, 2002, 07:40 AM
#4
Use "asx" streaming, using the asf locator format.Example below. http://wmservera.netbroadcaster.com/bc15/b10001005b.asf
To create a Windows Media metafile
Open a text editor, such as Microsoft® Notepad.
Type the following metafile script, replacing the URL with that of your media. Reference the media just as you would any other Web file.
<ASX VERSION="3.0">
<ENTRY>
<REF HREF="http://YourWebServer/Path/YourFile.asf" />
</ENTRY>
</ASX>
You can place the metafile in the same folder as that of your media. If you do so, you can use a relative path, which is simply the name of the file. The REF line would look like this:
<REF HREF="YourFile.asf" />
Save the text file, using the name of your media file followed by the
.asx extension, for example, YourFile.asx. Windows Media Audio files
with .wma extensions are referenced the same as Windows Media files
with .asf extensions in metafile scripting. When you name the metafile,
use the .wax extension, for example, YourFile.wax.
To add a tag to an HTML file
Using a text editor such as Microsoft Notepad, open the Web page that you want to add the reference to the media to.
Add the URL of the metafile. For example:
<HTML>
<BODY>
Play this Windows Media file:
<A href="http://YourWebServer/Path/YourFile.asx">
YourFile</A>
</BODY>
</HTML>
Copy the Windows Media files (with .asx, .asf, .wma, and .wax extensions) to your Web server.
When an end user clicks the reference on the Web page, the metafile is downloaded and Windows Media Player opens. Windows Media Player opens the metafile and then opens and plays the file with an .asf or .wma extension from your Web server.
For more advanced support, please see http://msdn.microsoft.com/windowsmedia/
[This message has been edited by lukeg (edited 02-02-2002).]
[This message has been edited by lukeg (edited 02-02-2002).]
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|