YouTube Embedding Tutorial
Ok, here's how you do it. A youtube video url will come in two different types. The kind with the video code at the end, and the kind with the code in the middle. You need to strip off this extra stuff before putting the code (alone) between the youtube tags.
Here are two different urls going to the same video:
Code: Select all
code at the end:
http://www.youtube.com/watch?v=xC03hmS1Brk
and code in the middle:
http://www.youtube.com/watch?v=xC03hmS1Brk&feature=plcp
Always get rid of everything up to and including, the first (or only) equal sign "=".
The stuff after it is the code, but note in the second example, there is extra stuff after the code.
The extra stuff after always begins with an "&" followed by whatever extra stuff.
Strip off the &'s and the extra stuff following at the end.
To sum it up, just keep the part between the first "=" and the first "&" (if there is one).
We are left with just the code: xC03hmS1Brk so...
Code: Select all
Now put that inside youtube tags:
[youtube]xC03hmS1Brk[/youtube]
The above tag and code will become this when posted:
[youtube]xC03hmS1Brk[/youtube]