Embedding video

Undertaker #59*

Car'a'carn
Staff member
Joined
Oct 8, 2002
Messages
29,154
Reaction score
9,493
Points
113
Several video sites out there are now making it VERY easy for you to embed video in your posts. On the page where you view the video, they supply the HTML so that you can embed it in a post here just by copying and pasting the code like so:

<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/_E2YU3fBTeE"></param><embed src="http://www.youtube.com/v/_E2YU3fBTeE" type="application/x-shockwave-flash" width="425" height="350"></embed></object>

Attached is a screen cap of where to get the embedded code on youtube.com

So just copy the EMBED code from the site, and paste it here in your post, that's it.
 
And in this post, we have an example from break.com

<embed SRC="http://clip.break.com/dnet/media/content/runningknockout18.wmv" WIDTH="400" HEIGHT="320" AUTOPLAY="true" ></embed><br><a href="http://www.break.com?e=1" target="_blank">As seen on Break.com</a>

If you know a little about HTML, you should be able to modify this code in order to do the same thing for other videos from other sites.
 
Here is another one from metacafe.com

<EMBED name=MediaPlayer src='http://www.metacafe.com/play/91381/jumper_missed.asx?emailClientType=2048&timeStamp=2006-03-20%2018:03:45' width=400 height=370 type=application/x-mplayer2 autostart="0" ShowControls='1' ShowStatusBar='1' allowScriptAccess='never'></EMBED>
 
test

<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/dkCyWOR5LTU&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/dkCyWOR5LTU&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
 
test


<object id="W4744a4fa34d5cd83" width="435" height="429" quality="high" data="http://widgets.clearspring.com/o/46a8f95380ba919f/4744a4fa34d5cd83" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"><param name="wmode" value="transparent" /><param name="movie" value="http://widgets.clearspring.com/o/46a8f95380ba919f/4744a4fa34d5cd83" /><param name="scaleMode" value="showAll" /><param name="allowNetworking" value="all" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="" /></object>
 
embing isn't working for me in the assclown asslyum.

copied and pasted the whole thing, but it came up with the text
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/qa9LNPwZIGA&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/qa9LNPwZIGA&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
 
test


<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/3C9Bng7NPPY&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/3C9Bng7NPPY&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
 
I am sure it can be done with a little HTML. I just have never looked into it.
 
Doesn't work for me

It looks like the code you are using is inputting the [ URL] tags. This should work:

<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/O6xpcadT5HU&hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/O6xpcadT5HU&hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
 
You can quote that post and see the difference between that and what you were trying to post. Your original code had BBCODE in it.
 
Let's see if this works. Here is the code you had in your original post:

Code:
<object width="425" height="355"><param name="movie" value="[URL]http://www.youtube.com/v/O6xpcadT5HU&hl=en"></param><param[/URL] name="wmode" value="transparent"></param><embed src="[URL]http://www.youtube.com/v/O6xpcadT5HU&hl=en[/URL]" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>

Those "URL" tags are screwing it up, here is what it should look like:

Code:
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/O6xpcadT5HU&hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/O6xpcadT5HU&hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
 
Back
Top