videojs-group-play

0.0.1 • Public • Published

videojs-group-play

Table of Contents

Installation

Installation

npm install --save videojs-group-play

Usage

To include videojs-group-play on your website or web application, use any of the following methods.

<script> Tag

This is the simplest case. Get the script in whatever way you prefer and include the plugin after you include video.js, so that the videojs global is available.

<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-group-play.min.js"></script>
<script>
  var player = videojs('my-video');
 
  player.groupPlay();
</script> 

Browserify/CommonJS

When using with Browserify, install videojs-group-play via npm and require the plugin as you would any other module.

var videojs = require('video.js');
 
// The actual plugin function is exported by this module, but it is also
// attached to the `Player.prototype`; so, there is no need to assign it
// to a variable.
require('videojs-group-play');
 
var player = videojs('my-video');
 
player.groupPlay();

RequireJS/AMD

When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require the plugin as you normally would:

require(['video.js', 'videojs-group-play'], function(videojs) {
  var player = videojs('my-video');
 
  player.groupPlay();
});

License

MIT. Copyright (c) brandonocasey <brandonocasey@gmail.com>

Readme

Keywords

Package Sidebar

Install

npm i videojs-group-play

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

155 kB

Total Files

28

Last publish

Collaborators

  • brandonocasey