How to embed the Video clips on a Static Website?

Discussion in 'Graphics & Multimedia' started by bushib, Apr 1, 2008.

  1. #1
    Hi there,

    I want to know that how to put and play the Video clips on a static website?

    Regards
    bushib
     
    bushib, Apr 1, 2008 IP
  2. LittleJonSupportSite

    LittleJonSupportSite Peon

    Messages:
    386
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #2
    For Windows Media Player:
    
         <!-- begin embedded WindowsMedia file... -->
          <table border='0' cellpadding='0' align="left">
          <tr><td>
          <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://servername/path/to/media.file">
          <param name='animationatStart' value='true'>
          <param name='transparentatStart' value='true'>
          <param name='autoStart' value="true">
          <param name='showControls' value="true">
          <param name='loop' value="true">
          <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://servername/path/to/media.file" autostart="true" designtimesp='5311' loop="true">
          </EMBED>
          </OBJECT>
          </td></tr>
          <!-- ...end embedded WindowsMedia file -->
        <!-- begin link to launch external media player... -->
            <tr><td align='center'>
            <a href="http://servername/path/to/media.file" style='font-size: 85%;' target='_blank'>Launch in external player</a>
            <!-- ...end link to launch external media player... -->
            </td></tr>
          </table>
    
    Code (markup):
    For Flash:

    
          <!-- begin embedded Flash file... -->
          <table border='0' cellpadding='0' align="left">
            <tr><td>
            <OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'
            codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0'
            width="320" height="240">
            <param name='movie' value="http://servername/path/to/media.file">
            <param name='quality' value="high">
            <param name='bgcolor' value='#FFFFFF'>
            <param name='loop' value="true">
            <EMBED src="http://servername/path/to/media.file" quality='high' bgcolor='#FFFFFF' width="320"
            height="240" loop="true" type='application/x-shockwave-flash'
            pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'>
            </EMBED>
            </OBJECT>
            </td></tr>
            <!-- ...end embedded Flash file -->
           </table>
    
    Code (markup):
    For Quicktime

    
    
          <!-- begin embedded QuickTime file... -->
          <table border='0' cellpadding='0' align="left">
            <!-- begin video window... -->
            <tr><td>
            <OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="320"
            height="255" codebase='http://www.apple.com/qtactivex/qtplugin.cab'>
            <param name='src' value="http://servername/path/to/media.file">
            <param name='autoplay' value="true">
            <param name='controller' value="true">
            <param name='loop' value="true">
            <EMBED src="http://servername/path/to/media.file" width="320" height="255" autoplay="true" 
            controller="true" loop="true" pluginspage='http://www.apple.com/quicktime/download/'>
            </EMBED>
            </OBJECT>
            </td></tr>
            <!-- ...end embedded QuickTime file -->
            </table>
    
    Code (markup):
     
    LittleJonSupportSite, Apr 1, 2008 IP
  3. bushib

    bushib Banned

    Messages:
    1,096
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #3
    hi,

    Thanks
    bushib
     
    bushib, Apr 1, 2008 IP
  4. Ross1234

    Ross1234 Peon

    Messages:
    78
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Does this work for mpeg? and if so which one?
     
    Ross1234, May 2, 2008 IP