Posted 05/06/2010 - 19:54 by Wendy Anthony
Steps to add video (see below) using a video filter:
- Upload your video to Youtube
- Copy Youtube URL from Browser Location
e.g. http://www.youtube.com/watch?v=EWy58aKANGE&feature=player_embedded - 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:
- Copy Youtube URL
http://www.youtube.com/watch?v=EWy58aKANGE&feature=player_embedded - remove &feature=player_embedded:
http://www.youtube.com/watch?v=EWy58aKANGE; - add &fs=1:
http://www.youtube.com/watch?v=EWy58aKANGE&fs=1 - 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>
- Copy Youtube URL
