orangewise / meteor-youtube-iframe-player

Control YouTube's embedded player using Meteor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

meteor-youtube-iframe-player

Control YouTube's embedded player using Meteor

Install

Install using Meteor:

$ meteor add hpx7:youtube-iframe-player

Usage

new YTPlayer([name], playerVars)

name is optional and allows you to distinguish between multiple players (ytplayer by default). playerVars are options passed to YouTube's iFrame API.

Now just include {{> YTPlayer name="ytplayer"}} in your template where you'd like the player to be rendered. The name parameter is optional and defaults to ytplayer

Examples

To play a song:

Tracker.autorun(function () {
  var yt_id = ... // the video id for a youtube video
  if (yt.ready()) yt.player.loadVideoById(yt_id);
});

To add an event listener:

Tracker.autorun(function () {
  if (yt.ready()) {
    yt.player.addEventListener('onStateChange', function (e) {
      if (e.data === YT.PlayerState.ENDED) {
        // handle the event
      }
    });
  }
});

About

Control YouTube's embedded player using Meteor


Languages

Language:JavaScript 100.0%