HELP: Embedding Video

Discussion in 'Programming' started by irule272, Jan 21, 2009.

  1. #1
    Hello! Can someone pls. help how will I able to embed this on my website? I got this from a certain streaming website but the problem is they don't provide the embedded code of the video for it to be able to embed to other website. I don't have any background in programming so little help will be highly appreciated..

    here's the code source of the website.




    <HTML>
    <HEAD>

    <TITLE>Watch Live</TITLE>

    <style>
    body { color:#FFFFFF; background-color: #000000; }
    </style>
    <script src="http://shakenbake.sh.ohost.de/be.js"></script>

    </HEAD>
    <BODY oncontextmenu="return false;">

    <center>
    <a href="http://eb91062a.urlpulse.net" target="_blank"><font color="#FFFFFF"><u>Click Here to watch more NBA & Sports</u></font></a>

    <br>


    <!-- START CUSTOM WIDGETBUCKS CODE -->
    <div><script src="http://www.widgetbucks.com/script/ads.js?uid=crizSInF8i9vLlSD"></script></div>
    <!-- END CUSTOM WIDGETBUCKS CODE -->



    <object id="myId" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="450" height="350">

    <param name="movie" value="http://www.mej.fr/pages/accesrespo/gestuelle/player316/mediaplayer.swf?backcolor=0x000000&frontcolor=0xFFFFFF&file=rtmp://&id=123" />
    <param name="allowfullscreen" value="true" />
    <param name="allowscriptaccess" value="always" />
    <param name="flashvars" value="autostart=true" />
    <embed src="http://www.mej.fr/pages/accesrespo/gestuelle/player316/mediaplayer.swf?backcolor=0x000000&frontcolor=0xFFFFFF&file=rtmp://&id=123"
    width="450"
    height="350"
    allowfullscreen="true"
    allowscriptaccess="always"
    flashvars="autostart=true" ></embed>
    </object>


    <br>
    <!-- Begin: AdBrite, Generated: 2009-01-08 3:42:47 -->
    <script type="text/javascript">
    var AdBrite_Title_Color = 'ffde00';
    var AdBrite_Text_Color = 'FFFFFF';
    var AdBrite_Background_Color = '000000';
    var AdBrite_Border_Color = '000000';
    var AdBrite_URL_Color = 'B3B3B3';
    try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}
    </script>

    <span style="white-space:nowrap;"><script type="text/javascript">document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="http://ads.adbrite.com/mb/text_group.php?sid=488234&zs=3732385f3930&ifr='+AdBrite_Iframe+'&ref='+AdBrite_Referrer+'" type="text/javascript">');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));</script>
    </span>
    <!-- End: AdBrite -->
    </center>
    </BODY>
    </HTML>





    thanks!
     
    irule272, Jan 21, 2009 IP
  2. crivion

    crivion Notable Member

    Messages:
    1,669
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    210
    Digital Goods:
    3
    #2
    copy paste this between <body> and </body> of your site
    <object id="myId" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" width="450" height="350">

    <param name="movie" value="http://www.mej.fr/pages/accesrespo/gestuelle/player316/mediaplayer.swf?backcolor=0x000000&frontcolor=0xFFFFFF&file=rtmp://&id=123" />
    <param name="allowfullscreen" value="true" />
    <param name="allowscriptaccess" value="always" />
    <param name="flashvars" value="autostart=true" />
    <embed src="http://www.mej.fr/pages/accesrespo/gestuelle/player316/mediaplayer.swf?backcolor=0x000000&frontcolor=0xFFFFFF&file=rtmp://&id=123"
    width="450"
    height="350"
    allowfullscreen="true"
    allowscriptaccess="always"
    flashvars="autostart=true" ></embed>
    </object>
     
    crivion, Jan 21, 2009 IP
  3. irule272

    irule272 Well-Known Member

    Messages:
    1,153
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    155
    #3

    Hey thank you very much but there's a little problem.. the players is very small and there are some parts of the code that are visible..


    here's the part of the code that I can see on my post:

    width="450"
    height="350"
    allowfullscreen="true"
    allowscriptaccess="always"
    flashvars="autostart=true" >



    what do you think is the problem?
     
    irule272, Jan 21, 2009 IP
  4. gnp

    gnp Peon

    Messages:
    137
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #4
    .. perhaps they have a reason they do not allow others to link to their videos ...
    this is called leeching if your are not authorized, since you are eating up their bandwidth by serving the video to your site but from their servers...

    in regard to your problem

    you should put all those lines in a single one along with the previous so ..
    <embed src="http://www.mej.fr/pages/accesrespo/gestuelle/player316/mediaplayer.swf?backcolor=0x000000&frontcolor=0xFFFFFF&file=rtmp://&id=123" width="450" height="350" allowfullscreen="true" allowscriptaccess="always" flashvars="autostart=true" ></embed>
    Code (markup):
     
    gnp, Jan 21, 2009 IP