Difference between revisions of "Widget:YouTube"

From Nottinghack Wiki
Jump to navigation Jump to search
m (Categorised)
 
(8 intermediate revisions by 3 users not shown)
Line 11: Line 11:
 
: The video ID.  This can be found in the YouTube video's URL, for example: <code><nowiki>http://</nowiki>www.youtube.com/watch?v='''''DWef69ItVrU'''''</code>
 
: The video ID.  This can be found in the YouTube video's URL, for example: <code><nowiki>http://</nowiki>www.youtube.com/watch?v='''''DWef69ItVrU'''''</code>
 
;width
 
;width
: Width of the video player in pixels (default 480).
+
: Width of the video player in pixels (default 640).
 
;height
 
;height
: Height of the video player in pixels (default 385).
+
: Height of the video player in pixels (default 355).
 
+
;start
For 16:9 video you will get better results by setting the size to 640×385.
+
: Start position of the video
 +
For 5:4 video you will get better results by setting the size to 480×385.
  
 
== Example ==
 
== Example ==
 
{{#widget:YouTube|id=DWef69ItVrU}}
 
{{#widget:YouTube|id=DWef69ItVrU}}
 
+
[[Category:Widget]]
 
[[Category:Help]]
 
[[Category:Help]]
</noinclude><includeonly><object width="<!--{$width|escape:'html'|default:'480'}-->" height="<!--{$height|escape:'html'|default:385}-->"><param name="movie" value="http://www.youtube.com/v/<!--{$id|escape:'urlpathinfo'}-->"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/<!--{$id|escape:'urlpathinfo'}-->" type="application/x-shockwave-flash" wmode="transparent" width="<!--{$width|escape:'html'|default:'480'}-->" height="<!--{$height|escape:'html'|default:385}-->"></embed></object></includeonly>
+
</noinclude><includeonly><iframe width="<!--{$width|escape:'html'|default:'640'}-->" height="<!--{$height|escape:'html'|default:355}-->" src="https://www.youtube.com/embed/<!--{if isset($playlist)}-->?listType=playlist&list=<!--{$playlist|escape:'urlpathinfo'}--><!--{else}--><!--{$id|escape:'urlpathinfo'}--><!--{if isset($start)}-->?start=<!--{$start}--><!--{/if}--><!--{/if}-->" frameborder="0" allowfullscreen></iframe></includeonly>

Latest revision as of 07:25, 6 April 2019

This widget allows you to embed a YouTube video player in a wiki page.

Usage

You can insert a video with the following wiki code:

{{#widget:YouTube|id=DWef69ItVrU}}

Parameters

id
The video ID. This can be found in the YouTube video's URL, for example: http://www.youtube.com/watch?v=DWef69ItVrU
width
Width of the video player in pixels (default 640).
height
Height of the video player in pixels (default 355).
start
Start position of the video

For 5:4 video you will get better results by setting the size to 480×385.

Example