Help:Videos: Difference between revisions

From Halopedia, the Halo wiki

(We do NOT need a link to a spanking wiki.)
(Created page with 'Here on this wiki we have the Youtube extension installed. You may take any video from Youtube and put it on the wiki to play. However, there is one rule: {| align="center" style…')
Line 1: Line 1:
[[Category:Help]]
Here on this wiki we have the Youtube extension installed. You may take any video from Youtube and put it on the wiki to play. However, there is one rule:
Video from YouTube can be shown on any Wikia page using simple code.  The video is not uploaded to Wikia, but '''embedded'''.  This means it is stored on YouTube, then called from there to be viewed on Wikia.
{| align="center" style="width: 80%; background-color: #f1f1de; border: 2px solid #996; padding: 5px; color:black"
|
'''YOUTUBE VIDEOS SHOULD ONLY BE EMBEDDED IN [[Special:MyPage|YOUR USER PAGE]], NOT ON ANY ARTICLE, TEMPLATE, OR ANY OTHER NAMESPACE.''' Certain YouTube videos can be used as reference links in the reference section of articles, but do not embed the video in the article itself.
|}


==Adding a YouTube video==
To include videos, you must take the ID of the video and put it in between <nowiki><youtube></nowiki> tags. So for [http://www.youtube.com/watch?v=k9ez7iNjoVg this ''Halo: Reach'' trailer], the ID is <tt>k9ez7iNjoVg</tt>. Thus the code is


To add a YouTube video, you need the id code for the video.  The easiest way to find this is to look at the URL of the YouTube page for the video.  The string of letters and numbers after "v=" in the URL is the id code.  So for the URL: '''<nowiki>http://www.youtube.com/watch?v=DLFDzC_ok8c</nowiki>''' the id code could be '''DLFDzC_ok8c'''.  If you aren't sure what you use, you can add the whole url in place of the id code.
<pre><youtube>k9ez7iNjoVg</youtube></pre>
Please also make sure the video is appropriate for everybody, 13 or up.


YouTube videos are embedded with the code:
and produces


<nowiki><youtube></youtube></nowiki>
<center><youtube>k9ez7iNjoVg</youtube></center>
This case also uses <tt><nowiki><center></nowiki></tt> tags to center the video.


The id code for the video you want to show goes between the two tags:
[[Category:Help|{{PAGENAME}}]]
 
<nowiki><youtube>id code</youtube></nowiki>
 
"id code" is the code from the URL.  So an example might be:
 
<nowiki><youtube>DLFDzC_ok8c</youtube></nowiki>
 
===Changing the size of the video===
 
You can change the width and height of the video box, to a maximum of 425x350 pixels.  If you specify width ''and'' height, and those settings are not in proportion to the YouTube screen, then you will have empty space around the video.  In most cases, the width determines the screen size in this situation.
 
* Width is controlled with width="xxx", where xxx is the number of pixels.  The default is 425 pixels.
* Height is controlled in the same way with height="xxx".  The default is 350 pixels.
 
A full example would be:
 
<nowiki><youtube width="200" height="200">DLFDzC_ok8c</youtube></nowiki>
 
This gives you:
<youtube width="200" height="200">DLFDzC_ok8c</youtube>
 
==Adding a caption==
You can add a caption to a video using the image thumbnail styles. This example will add a video with a width of 200px, float it to the right of the page, and add a caption at the top. Simply edit the ID and CAPTION.
<pre>
<div class="thumb tright"  style="width:200px;">
<div class="thumbcaption">CAPTION</div>
<youtube width="200" height="200">YouTube ID</youtube>
</div>
</pre>
 
==Examples==
:Are you using YouTube on your wiki? Please add to the list of examples below to show people how this new feature can be used.
 
* [[w:c:jet:TPR warm-up|Video clip of English lesson activity on WikiJET]]
* [[w:c:glest:Videos|Videos showing the 3D strategy game ''Glest'']]
* [[Uncyclopedia:UnNews:PS3 fans eagerly await OJ Simpson's new game "If You Did It"|UnNews is now available on video]]
* [[w:c:nwn|Watch the trailer of Neverwinter Nights 2]]
* [[w:c:furry|The "Nature Anthem" song on WikiFur]]
* [[w:c:humannetwork|Cisco's Human Networking commercial on the Human Network Wiki]]
* [[w:c:buffy|Buffy and Angel snippets set to "Breathless" by The Corrs on the Buffyverse Wikia]]
* [[w:c:gaia:Battle System|The Gaiapedia using YouTube videos to show off the battle system teaser video.]]
* [[w:c:gaia:Otakon 2006|The Gaiapedia using YouTube videos to show off recorded footage from The Otakon 2006 Gaia Online Panel.]]
 
{{Helplist}}
 
[[Category:Help]]

Revision as of 08:31, August 3, 2010

Here on this wiki we have the Youtube extension installed. You may take any video from Youtube and put it on the wiki to play. However, there is one rule:

YOUTUBE VIDEOS SHOULD ONLY BE EMBEDDED IN YOUR USER PAGE, NOT ON ANY ARTICLE, TEMPLATE, OR ANY OTHER NAMESPACE. Certain YouTube videos can be used as reference links in the reference section of articles, but do not embed the video in the article itself.

To include videos, you must take the ID of the video and put it in between <youtube> tags. So for this Halo: Reach trailer, the ID is k9ez7iNjoVg. Thus the code is

<youtube>k9ez7iNjoVg</youtube>

and produces

<youtube>k9ez7iNjoVg</youtube>

This case also uses <center> tags to center the video.