video on websites
Results 1 to 4 of 4

Thread: video on websites

  1. #1
    Join Date
    Feb 2001
    Location
    Ohio
    Posts
    61

    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.

  2. #2
    Join Date
    Aug 2000
    Posts
    786
    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).]

  3. #3
    Join Date
    Aug 2000
    Posts
    786
    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>

  4. #4
    Join Date
    Aug 2000
    Posts
    786
    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
  •