Need to learn how to embed WMVs in html pages

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mako
    Confirmed User
    • Jul 2004
    • 1986

    #1

    Need to learn how to embed WMVs in html pages

    Anyone know a good tutorial site for learning how to embed videos in fixed players on an html page like a lot of the tours are going to now? (TCG, etc).

    Thanks
  • adonthenet
    Too lazy to set a custom title
    • Feb 2005
    • 16753

    #2
    I had one a week ago..
    let me lookup for it .
    icq :162027899 i hope ill find it for you bud.

    Comment

    • Mako
      Confirmed User
      • Jul 2004
      • 1986

      #3
      Originally posted by adonthenet
      I had one a week ago..
      let me lookup for it .
      icq :162027899 i hope ill find it for you bud.
      Nice, thanks for the effort. You'd think they'd be more prevalent, but searching around didn't lead to many good results...

      Comment

      • keyboard warrior
        Confirmed User
        • Jul 2004
        • 1435

        #4
        use google "embed wmv"
        - nothing here -

        Comment

        • DeanCapture
          Haters & Trolls SUCK!
          • Dec 2002
          • 9275

          #5
          Here ya' go!
          Twitter: @DeanCapture
          Instagram: @TheDeanCapture
          DeanCapture "at" Gmail.com

          Comment

          • Mako
            Confirmed User
            • Jul 2004
            • 1986

            #6
            Originally posted by DeanCapture
            That owns, perfect.

            Comment

            • xXxtreme2005
              Confirmed User
              • Feb 2005
              • 717

              #7
              Here is the code I use. I have inserted the file name you need to change in red, let me know if you need help. It will auto start when page loads...which I like, change the value to false if you don't want it to.

              !-- begin embedded WindowsMedia file... -->
              <object id='mediaPlayer' width="320" height="285"
              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://www.domainname.com/yourmovie.wmv">
              <param name='animationatStart' value='true'>
              <param name='transparentatStart' value='true'>
              <param name='autoStart' value="true">
              <param name='showControls' value="true">
              <param name='loop' value="false">
              <embed type='application/x-mplayer2'
              pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
              id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
              bgcolor='darkblue' showcontrols="true" showtracker='-1'
              showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="320" height="285"
              src="http://www.domainname.com/yourmovie.wmv" autostart="true" designtimesp='5311' loop="false"> </embed>
              </object>
              <!-- ...end embedded WindowsMedia file -->


              GOT TRAFFIC?.......
              I BUY TRAFFIC
              ICQ 318-368-640

              Comment

              • Mako
                Confirmed User
                • Jul 2004
                • 1986

                #8
                What does the videoborder3d='-1' command do xXx?

                Comment

                Working...