Help:Videos: Difference between revisions

From Destinypedia, the Destiny wiki

m (Text replacement - "<youtube>([0-9A-Za-z-_]{11})<\/youtube>" to "{{#widget:YouTube|id=$1}}")
m (Protected "Help:Videos" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only Destinypedia staff] (indefinite)))
 
(2 intermediate revisions by the same user not shown)
Line 5: Line 5:
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=GmkSs0WHey0</nowiki>''', the ID code could be '''GmkSs0WHey0'''.
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=GmkSs0WHey0</nowiki>''', the ID code could be '''GmkSs0WHey0'''.


=== Parser function method ===
{{#widget:YouTube|id=GmkSs0WHey0|thumb|width=300px|caption=Check this out!}}
{{#youtube:GmkSs0WHey0|200px|right|Check this out!}}
YouTube videos can be added using the following parser function syntax:
YouTube videos can be added using the following parser function syntax:


  <nowiki>{{#youtube:VIDEOID|width|align|description|height}}</nowiki>
  <nowiki>{{#widget:YouTube|id=VIDEOID|thumb|width=300px|caption=Check this out!}}</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).
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:
For example, the video on the right is embedded with this code:


  <nowiki>{{#youtube:GmkSs0WHey0|200px|right|Check this out!}}</nowiki>
  <nowiki>{{#widget:YouTube|id=GmkSs0WHey0|thumb|width=300px|caption=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:
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>{{#youtube:VIDEOID|width|height}}</nowiki>
  <nowiki>{{#widget:YouTube|id=GmkSs0WHey0|center|height=400px|caption=Check this out!}}</nowiki>
 
=== Legacy method ===
If you aren't sure what you use, you can add the whole URL in place of the ID code. YouTube videos are embedded with the code:
 
<nowiki><youtube>VIDEOID</youtube></nowiki>
 
"VIDEOID" is the code from the URL. So an example might be:
 
  <nowiki>{{#widget:YouTube|id=GmkSs0WHey0}}</nowiki>
 
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:
 
<nowiki>{{#widget:YouTube|id=92Bbw-KHajs|width=425|height=300}}</nowiki>
 
== 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:
 
<nowiki>{{#vimeo:VIDEOID|width|align|description|height}}</nowiki>
<nowiki>{{#vimeo:VIDEOID|width|height}}</nowiki>
<nowiki><vimeo width="425" height="300">VIDEOID</vimeo></nowiki>
 
These tags work the exact same way as described above.


{{Helplist}}
{{Helplist}}


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

Latest revision as of 11:45, September 13, 2022

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

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

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=GmkSs0WHey0|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=GmkSs0WHey0|center|height=400px|caption=Check this out!}}