Results 1 to 5 of 5
  1. #1
    Join Date
    Feb 2005
    Posts
    1,411
    Tokens
    0

    Latest Awards:

    Default Video HTML Code?

    Hey i couldnt remember what it was so i thought i would ask. Does anyone know the HTML cos to insert a video using windows media player. + Rep to first right answer

    - Matt
    I owe rep to:

    NintendoNews & Luckyrare

  2. #2
    Join Date
    Jul 2005
    Location
    Belgium
    Posts
    2,492
    Tokens
    147

    Latest Awards:

    Default

    Quote Originally Posted by lMattz
    Hey i couldnt remember what it was so i thought i would ask. Does anyone know the HTML cos to insert a video using windows media player. + Rep to first right answer

    - Matt
    Code:
    <embed type="application/x-mplayer2" pluginspage=" http://www.microsoft.com/Windows/MediaPlayer/"
    										src="http://www.yourlink.com/movie.wmv"
    										align="middle"
    										width="640"
    										height="480"
    										ShowControls="true"
    										ShowDisplay="false"
    										showstatusbar="true">
    										</embed>
    Last edited by [Oli]; 08-06-2006 at 05:46 PM.

  3. #3
    Join Date
    Mar 2005
    Location
    Kidlington, Oxford.
    Posts
    7,274
    Tokens
    0

    Latest Awards:

    Default

    <embed SRC="Video URL here" WIDTH="x" HEIGHT="x" AUTOPLAY="true" ></embed>
    x = size needed to be added

  4. #4
    Join Date
    Feb 2005
    Posts
    1,411
    Tokens
    0

    Latest Awards:

    Default

    Both + rep
    I owe rep to:

    NintendoNews & Luckyrare

  5. #5
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    <object classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" id="WindowsMediaPlayer1" volume="100" height="H" width="W">
    <param name="src" value="URLOFVIDEO">
    <param name="type" value="application/x-mplayer2">
    <param name="autoplay" value="true">
    <param name="controller" value="true">
    <embed volume="100" pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&amp;sbp=mediaplayer&amp;ar=m edia&amp;sba=plugin&amp;" name="MediaPlayer" src="URLOFVIDEO" type="application/x-mplayer2" controller="true" autoplay="true" height="H" width="W">
    </object>

    H W and URLOFVIDEO need to be replaced appropitety, This way it will play in both IE and Firefox, rather than in only one

Posting Permissions

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