Not signed in (Sign In)

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.


    • CommentAuthorviane
    • CommentTimeNov 3rd 2006
     
    Hi,

    Wondered if you guys could help me find the code to stream video footage on my site...it would only be like 3 - 5 mins worth of footage just on the 1 page?

    Id like visitors to have the choice whether they would like to view the footage so the video footage would be linked to a button...

    Im not interested in using flash to covert etc etc as the visitor might not have flash player...it would be great if the video content on my site uses their default player for them to view the footage...
  1.  
    you need to decide what type of player you want to embed: WindowsMedia, Quicktime, or Real.

    Then find the html embed code online.

    for instance here is how to embed windows media:


    <OBJECT id="VIDEO" width="320" height="240"
       style="position:absolute; left:0;top:0;"
       CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
       type="application/x-oleobject">
      
       <PARAM NAME="URL" VALUE="your file or url">
       <PARAM NAME="SendPlayStateChangeEvents" VALUE="True">
       <PARAM NAME="AutoStart" VALUE="True">
       <PARAM name="uiMode" value="none">
       <PARAM name="PlayCount" value="9999">
    </OBJECT>


    see the explanation here:
    http://www.mioplanet.com/rsc/embed_mediaplayer.htm