ユーザ用ツール

サイト用ツール


wiki:youtube

YouTube Video

{{ youtube>0E00Zuayv9Q?small |ペン・パイナップルペン}}

上記のように書けば、下記の表示がされる。

htmlで埋め込む方法

<html>
<div class=”video”>
<iframe src="https://www.youtube.com/embed/lJIrF4YjHfQ" frameborder="0" allowfullscreen>
</div>
</iframe></html>

下記でも、成功

<html>
<div id="ytplayer"></div>

<script>
  // Load the IFrame Player API code asynchronously.
  var tag = document.createElement('script');
  tag.src = "https://www.youtube.com/player_api";
  var firstScriptTag = document.getElementsByTagName('script')[0];
  firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

  // Replace the 'ytplayer' element with an <iframe> and
  // YouTube player after the API code downloads.
  var player;
  function onYouTubePlayerAPIReady() {
    player = new YT.Player('ytplayer', {
      height: '360',
      width: '640',
      videoId: 'M7lc1UVf-VE'
    });
  }
</script>
</html>

位置や大きさの書き方

{{youtube>L-WM8YxwqEU}}

Show a larger player:

{{youtube>L-WM8YxwqEU?large}}

Right-align the player:

{{ youtube>L-WM8YxwqEU}}

Show a small, centered player:

{{ youtube>L-WM8YxwqEU?small }}

Show a small, centered player with a title (look for right space!):

{{ youtube>L-WM8YxwqEU?small |Some funny video}}

Some other additional parameters are supported (depending on video service) as well:

{{youtube>L-WM8YxwqEU?small&start=30&end=45|A random segment of 15 seconds}}
wiki/youtube.txt · 最終更新: 2017/01/11 by N_Miya