How to EMBED Real/Quicktime/Windows Media into html?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Darren
    Confirmed User
    • Sep 2001
    • 5994

    #1

    How to EMBED Real/Quicktime/Windows Media into html?

    Anyone know how to do this? Mainly i would like to know windows media player?

    tks


    Penis enlargement / male enhancement pills - earn up to $229.48 per signup

    ICQ: 46335817
  • marty
    Confirmed User
    • Feb 2002
    • 1656

    #2
    Code:
    <object id="video" width="382" height="325" border="1" classid="CLSID:05589FA1-C356-11CE-BF01-00AA0055595A">
    <param name="ShowDisplay" value="0">
    <param name="ShowControls" value="1">
    <param name="AutoStart" value="1">
    <param name="AutoRewind" value="0">
    <param name="PlayCount" value="0">
    <param name="Appearance" value="0">
    <param name="BorderStyle" value="0">
    <param name="MovieWindowHeight" value="325">
    <param name="MovieWindowWidth" value="382">
    <param name="FileName" value="movie.mpg">
    <embed src="movie.mpg" type="video/x-msvideo" width="382" height="325" loop="true" autostart="true" controls="true">
    </embed> 
    </object>

    Comment

    • Jizar II
      Confirmed User
      • May 2001
      • 1425

      #3
      "CLSID:05589FA1-C356-11CE-BF01-00AA0055595A"

      I´m confused by this part, but is that what define the appearance of the control panel?

      Comment

      • shunga
        Confirmed User
        • Apr 2001
        • 994

        #4
        Originally posted by Darren
        Anyone know how to do this? Mainly i would like to know windows media player?
        You should ask Google - I don't think he posts here often, though.
        Clockwork Cash - ICQ: 355-26-288 / Email: admin AT clockworkcash DOT com
        Asian Paysites : Exclusive Content : NATS or CCBill
        Thai Cuties : Shave Asians : JAVondemand

        Comment

        • Rex
          Confirmed User
          • May 2002
          • 2241

          #5
          you can always just do

          (embed src="movie.mpg" width=XX height=XX)(/embed)

          of course replace ( with <
          Last edited by Rex; 09-17-2002, 09:28 AM.
          I don't own RexMag anymore.

          Comment

          • Darren
            Confirmed User
            • Sep 2001
            • 5994

            #6
            what about QUICKTIME and RealPlayer


            Penis enlargement / male enhancement pills - earn up to $229.48 per signup

            ICQ: 46335817

            Comment

            • Helix
              Confirmed User
              • Feb 2002
              • 6021

              #7
              real player embed
              http://www.blackout.ee/support/embed..._into_html.htm

              Comment

              • Darren
                Confirmed User
                • Sep 2001
                • 5994

                #8
                quicktime?


                Penis enlargement / male enhancement pills - earn up to $229.48 per signup

                ICQ: 46335817

                Comment

                • Darkhorse
                  Horsing Around
                  • Sep 2002
                  • 5880

                  #9
                  Below is the proper tags to play Macromeadia and Shockwave files.

                  (OBJECT CLASSID="CLSID:166B1BCA-3F9C-11CF-8075-444553540000" CODEBASE="HTTP://ACTIVE.MACROMEDIA.COM/DIRECTOR/CABS/SW.CAB#VERSION=6,0,1,0" WIDTH="32" HEIGHT="32")
                  (PARAM NAME="SRC" VALUE="SHOCKWAVE-FILE.SWF")
                  (EMBED SRC="SOCKWAVE-FILE.SWF" PLUGINSPAGE="HTTP://WWW.MACROMEDIA.COM/SHOCKWAVE/DOWNLOAD/" TYPE="APPLICATION/X-DIRECTOR" WIDTH="32" HEIGHT="32")
                  (/embed)
                  (/OBJECT)

                  These are for playing Flash Files.

                  (/OBJECT)<OBJECT CLASSID="CLSID:166B1BCA-3F9C-11CF-8075-444553540000" CODEBASE="HTTP://ACTIVE.MACROMEDIA.COM/DIRECTOR/CABS/SW.CAB#VERSION=6,0,1,0" WIDTH="32" HEIGHT="32")
                  (PARAM NAME="SRC" VALUE="SHOCKWAVE-FILE.SWF")
                  (EMBED SRC="SOCKWAVE-FILE.SWF" PLUGINSPAGE="HTTP://WWW.MACROMEDIA.COM/SHOCKWAVE/DOWNLOAD/" TYPE="APPLICATION/X-DIRECTOR" WIDTH="32" HEIGHT="32")
                  (/EMBED)
                  (/OBJECT)
                  This is to add support to play video files.

                  (EMBED SRC="" AUTOSTART="TRUE" WIDTH="200" HEIGHT="200"")
                  Use these tags to play Sound/Music Files.

                  (EMBED SRC="" AUTOSTART="TRUE" HIDDEN="TRUE" LOOP="0")
                  (BGSOUND SRC="" LOOP="INFINITE")
                  And use thses for Active X controls.

                  (OBJECT ID="" CLASSID="" WIDTH= HEIGHT= DATA="")(/OBJECT)
                  Hope that helps........ Remember to replace all the ( tags for <

                  Comment

                  Working...