Results 1 to 2 of 2

Thread: Adding a WMV file to an HTML page

  1. #1
    HernandezOrtiz is offline Senior Member
    Join Date
    Dec 2009
    Posts
    301
    Rep Power
    3

    Default Adding a WMV file to an HTML page

    Present me few suitable solutions for that. What steps will be considered necessary to do this

    Please do assist me out so that I can create the subject

  2. #2
    MartinWilson is offline Senior Member
    Join Date
    Dec 2009
    Posts
    281
    Rep Power
    3

    Default

    Open the HTML page in the Web editor of your option. Copy the following block of code and paste it into the document:

    Code:
    <OBJECT ID="MediaPlayer" WIDTH="192" HEIGHT="190" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
    STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject">
    <PARAM NAME="FileName" VALUE="http://www.example.com/movie.wmv">
    <PARAM name="autostart" VALUE="false">
    <PARAM name="ShowControls" VALUE="true">
    <param name="ShowStatusBar" value="false">
    <PARAM name="ShowDisplay" VALUE="false">
    <EMBED TYPE="application/x-mplayer2" SRC="http://www.example.com/movie.wmv" NAME="MediaPlayer"
    WIDTH="192" HEIGHT="190" ShowControls="1" ShowStatusBar="0" ShowDisplay="0" autostart="0"> </EMBED>
    </OBJECT>
    
    Restore the example URL with the URL for the WMV file that you desire to implant. You will require to insert it double once after "PARAM NAME="FileName" VALUE=" and then after "EMBED TYPE="application/x-mplayer2" SRC=."
    
    Save your file and upload modifies to your server, if essential.

Similar Threads

  1. Adding voice crash to HTML text website
    By BarnesHarris in forum General Internet Terms
    Replies: 1
    Last Post: 06-03-2010, 02:43 PM
  2. Adding voice crash to HTML text website
    By HowardAdams in forum General Internet Terms
    Replies: 0
    Last Post: 06-03-2010, 02:37 PM
  3. Adding a line in html
    By BrooksGray in forum General Internet Terms
    Replies: 1
    Last Post: 06-03-2010, 02:22 PM
  4. Adding WMV file to an HTML page
    By BakerJones in forum General Internet Terms
    Replies: 1
    Last Post: 06-03-2010, 01:59 PM
  5. What is the difference between a PHP and HTML Web page?
    By Adrien Brody in forum General Networking
    Replies: 0
    Last Post: 12-19-2009, 11:33 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48