Locked
Halopedia

Help:Videos: Difference between revisions

From Halopedia, the Halo 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…')
m (Bot: Automated text replacement (-^ +{{Status|Halopedia}}\n))
 
(22 intermediate revisions by 5 users not shown)
Line 1: Line 1:
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:
{{Status|Halopedia}}
{| align="center" style="width: 80%; background-color: #f1f1de; border: 2px solid #996; padding: 5px; color:black"
[[Category:Help]]
|
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.
'''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.
|}


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
==Adding a YouTube video==
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>https://www.youtube.com/watch?v=-IhGS0OSdh4</nowiki>''', the ID code could be '''-IhGS0OSdh4'''.


<pre><youtube>k9ez7iNjoVg</youtube></pre>
{{#widget:YouTube|id=-IhGS0OSdh4|thumb|width=300px|caption=Check this out!}}
YouTube videos can be added using the following parser function syntax:


and produces
<nowiki>{{#widget:YouTube|id=VIDEOID|thumb|width=300px|caption=Check this out!}}</nowiki>


<center><youtube>k9ez7iNjoVg</youtube></center>
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. Including the "thumb" parameter uses the thumbnail-style frame for video with the value for "caption" as its caption. The video will automatically resize to 16:9 with just the width provided, but the height may be provided if you require a different aspect ratio (such as 4:3).
This case also uses <tt><nowiki><center></nowiki></tt> tags to center the video.


[[Category:Help|{{PAGENAME}}]]
For example, the video on the right is embedded with this code:
 
<nowiki>{{#widget:YouTube|id=DLFDzC_ok8c|thumb|width=300px|caption=Check this out!}}</nowiki>
 
If you don't want to use the thumb format, just don't include the "thumb" parameter. A "left", "right", or "center" parameter may also be used to align the video in each respected way, and a "height" parameter to specify the video height. The parameters can be placed in any order.
 
<nowiki>{{#widget:YouTube|id=DLFDzC_ok8c|center|height=400px|caption=Check this out!}}</nowiki>
 
== Adding a Vimeo video ==
Vimeo videos can be added using the exact same formats as YouTube—just replace "YouTube" with "Vimeo" as the widget tag. Examples:
 
<nowiki>{{#widget:Vimeo|id=VIDEOID}}</nowiki>
<nowiki>{{#widget:Vimeo|id=VIDEOID|thumb|width=300px|caption=Check this out!}}</nowiki>
 
These tags work the same way as described above.
 
{{Halopedia HAGP}}
 
[[Category:Help]]

Latest revision as of 14:14, March 18, 2022

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

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: https://www.youtube.com/watch?v=-IhGS0OSdh4, the ID code could be -IhGS0OSdh4.

Check this out!
YouTube videos can be added using the following parser function syntax:

{{#widget:YouTube|id=VIDEOID|thumb|width=300px|caption=Check this out!}}

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. Including the "thumb" parameter uses the thumbnail-style frame for video with the value for "caption" as its caption. The video will automatically resize to 16:9 with just the width provided, but the height may be provided if you require a different aspect ratio (such as 4:3).

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

{{#widget:YouTube|id=DLFDzC_ok8c|thumb|width=300px|caption=Check this out!}}

If you don't want to use the thumb format, just don't include the "thumb" parameter. A "left", "right", or "center" parameter may also be used to align the video in each respected way, and a "height" parameter to specify the video height. The parameters can be placed in any order.

{{#widget:YouTube|id=DLFDzC_ok8c|center|height=400px|caption=Check this out!}}

Adding a Vimeo video

Vimeo videos can be added using the exact same formats as YouTube—just replace "YouTube" with "Vimeo" as the widget tag. Examples:

{{#widget:Vimeo|id=VIDEOID}}
{{#widget:Vimeo|id=VIDEOID|thumb|width=300px|caption=Check this out!}}

These tags work the same way as described above.