0.1.8 • Published 4 years ago

videojs-google-chromecast v0.1.8

Weekly downloads
4
License
UNLICENSED
Repository
github
Last release
4 years ago

videojs-google-chromecast

Chromecast plugin for videojs, adapted for v7.*. The plugin also has a way to play videojs on Google Chromecast in any Webapp (Electron...).

Table of Contents

Installation

npm install --save mikadoplus/videojs-google-chromecast

Usage

To include videojs-google-chromecast 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-google-chromecast.min.js"></script>
<script>
  var player = videojs('my-video');

  player.googleChromecast();
</script>

Browserify/CommonJS

When using with Browserify, install videojs-google-chromecast 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('mikadoplus/videojs-google-chromecast');

var player = videojs('my-video');

player.googleChromecast();

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', 'mikadoplus/videojs-google-chromecast'], function(videojs) {
  var player = videojs('my-video');

  player.googleChromecast();
});

License

UNLICENSED. Copyright (c) mikadoplus <plo@mikadoplus.lu>

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.5

4 years ago

0.0.6

4 years ago

0.0.3

4 years ago

0.0.4

4 years ago

0.0.1

4 years ago

0.0.2

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago