Help:Videos: Difference between revisions

From Halopedia, the Halo wiki

(Update with a cool optional method to use with templates or like thumbnails + Vimeo)
Line 3: Line 3:


==Adding a YouTube video==
==Adding a YouTube video==
=== Parser function method ===
{{#youtube:DLFDzC_ok8c|200px|right|Check this out!}}
YouTube videos can be added using the following parser function syntax:


<nowiki>{{#youtube:VIDEOID|width|align|description|height}}</nowiki>
This style can be used in templates and supports passing parameters to the tag. The video ID is the only mandatory field; the rest are optional. Setting '''align''' to "left" or "right" automatically uses the thumbnail-style frame for video with the value for "description" as its caption. The video will automatically resize to 4:3 with just the width provided, but the height may be provided if you require a different aspect ratio (such as 16:9).
For example, the video on the right is embedded with this code:
<nowiki>{{#youtube:DLFDzC_ok8c|200px|right|Check this out!}}</nowiki>
If you don't want to use the thumb format but still want to specify the height, the following format will work as well:
<nowiki>{{#youtube:VIDEOID|width|height}}</nowiki>
=== Legacy method ===
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.
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.
Please also make sure the video is appropriate for everybody, 13 or up.
Please also make sure the video is appropriate for everybody, 13 or up.
Line 19: Line 35:
  <nowiki><youtube>DLFDzC_ok8c</youtube></nowiki>
  <nowiki><youtube>DLFDzC_ok8c</youtube></nowiki>


===Changing the size of the video===
==== Changing the size of the video ====
 
You can change the width and height of the video box, to a maximum of 640x480 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.
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.
* Width is controlled with width="xxx", where xxx is the number of pixels. The default is 420 pixels.
* Height is controlled in the same way with height="xxx". The default is 350 pixels.
* Height is controlled in the same way with height="xxx". The default is 315 pixels.


A full example would be:
A full example would be:
Line 30: Line 45:
  <nowiki><youtube width="425" height="300">92Bbw-KHajs</youtube></nowiki>
  <nowiki><youtube width="425" height="300">92Bbw-KHajs</youtube></nowiki>


This gives you:
== Adding a Vimeo video ==
   
Vimeo videos can be added using the exact same formats as YouTube—just replace "youtube" with "vimeo" for either the parser function method or the legacy method. Examples:
<youtube width="425" height="300">92Bbw-KHajs</youtube>
 
  <nowiki>{{#vimeo:VIDEOID|width|align|description|height}}</nowiki>
<nowiki><vimeo width="425" height="300">VIDEOID</youtube></nowiki>


==Adding a caption==
These tags work the exact same way as described above.
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>


{{Helplist}}
{{Helplist}}


[[Category:Help]]
[[Category:Help]]

Revision as of 03:54, December 25, 2012

Video from YouTube can be shown on any Halopedia page using simple code. The video is not uploaded to Halopedia, but embedded. This means it is stored on YouTube, then called from there to be viewed on Halopedia.

Adding a YouTube video

Parser function method

{{#youtube:DLFDzC_ok8c|200px|right|Check this out!}} YouTube videos can be added using the following parser function syntax:

{{#youtube:VIDEOID|width|align|description|height}}

This style can be used in templates and supports passing parameters to the tag. The video ID is the only mandatory field; the rest are optional. Setting align to "left" or "right" automatically uses the thumbnail-style frame for video with the value for "description" as its caption. The video will automatically resize to 4:3 with just the width provided, but the height may be provided if you require a different aspect ratio (such as 16:9).

For example, the video on the right is embedded with this code:

{{#youtube:DLFDzC_ok8c|200px|right|Check this out!}}

If you don't want to use the thumb format but still want to specify the height, the following format will work as well:

{{#youtube:VIDEOID|width|height}}

Legacy method

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: http://www.youtube.com/watch?v=DLFDzC_ok8c 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. Please also make sure the video is appropriate for everybody, 13 or up.

YouTube videos are embedded with the code:

<youtube></youtube>

The id code for the video you want to show goes between the two tags:

<youtube>id code</youtube>

"id code" is the code from the URL. So an example might be:

<youtube>DLFDzC_ok8c</youtube>

Changing the size of the video

You can change the width and height of the video box, to a maximum of 640x480 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 420 pixels.
  • Height is controlled in the same way with height="xxx". The default is 315 pixels.

A full example would be:

<youtube width="425" height="300">92Bbw-KHajs</youtube>

Adding a Vimeo video

Vimeo videos can be added using the exact same formats as YouTube—just replace "youtube" with "vimeo" for either the parser function method or the legacy method. Examples:

{{#vimeo:VIDEOID|width|align|description|height}}
<vimeo width="425" height="300">VIDEOID</youtube>

These tags work the exact same way as described above.

Template:Helplist