Adding Video

Adding Video

Posted 05/06/2010 - 19:54 by Wendy Anthony

Steps to add video (see below) using a video filter:

  1. Upload your video to Youtube
  2. Copy Youtube URL from Browser Location
    e.g. http://www.youtube.com/watch?v=EWy58aKANGE&feature=player_embedded
  3. Insert your video URL in the following code:

    <p>
    <object type="application/x-shockwave-flash" width="479" height="400" data="http://www.youtube.com/watch?v=EWy58aKANGE&fs=1">
    <param name="movie" value="http://www.youtube.com/watch?v=EWy58aKANGE&fs=1" />
    <param name="wmode" value="transparent" />
    <param name="allowFullScreen" value="true" />
    </object>
    </p>

    • Note: The URL should start with http://
    • Note: Paste the URL within the two quotation marks e.g. "http://"
    • Note: don't include the Youtube code:
      &feature=player_embedded
    • Note: be sure to include the video filtering code:
      &fs=1
    • An example coding transition:
      1. Copy Youtube URL
        http://www.youtube.com/watch?v=EWy58aKANGE&feature=player_embedded
      2. remove &feature=player_embedded:
        http://www.youtube.com/watch?v=EWy58aKANGE;
      3. add &fs=1:
        http://www.youtube.com/watch?v=EWy58aKANGE&fs=1
      4. Insert modified Youtube URL, between 2 quotations, into 2 places in Video filter code:

        <p>
        <object type="application/x-shockwave-flash" width="479" height="400" data="http://www.youtube.com/v/EWy58aKANGE&fs=1">
        <param name="movie" value="http://www.youtube.com/v/EWy58aKANGE&fs=1" />
        <param name="wmode" value="transparent" />
        <param name="allowFullScreen" value="true" />
        </object>
        </p>