videojs-google-chromecast

0.1.8 • Public • Published

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>

/videojs-google-chromecast/

    Package Sidebar

    Install

    npm i videojs-google-chromecast

    Weekly Downloads

    42

    Version

    0.1.8

    License

    UNLICENSED

    Unpacked Size

    4.44 MB

    Total Files

    47

    Last publish

    Collaborators

    • mikadoplus