1.1.1 • Published 4 years ago

@youon/videojs-ssa v1.1.1

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

videojs-ssa

server-side ads integration

Table of Contents

Installation

Installation

npm install --save @youon/videojs-ssa

Usage

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

  player.ssa({
    debug : false,
    inventoryUrl : 'url/to/server/inventory'
  });
</script>

Browserify/CommonJS

When using with Browserify, install videojs-ssa 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('@youon/videojs-ssa');

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

player.ssa({
    debug : false,
    inventoryUrl : 'url/to/server/inventory'
  });

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', '@youon/videojs-ssa'], function(videojs) {
  var player = videojs('my-video');

  player.ssa({
    debug : false,
    inventoryUrl : 'url/to/server/inventory',
  });

});

Options

You can set options to the plugin

  player.ssa({ 
    debug: boolean (default: false)
    inventoryUrl: string (mandatory)
    thumbnail : boolean, (default: true)
    skip : boolean, (this is set by each ad)
    skipAfter : number, (this is set by each ad)
    waitForSkip : boolean, (default: true)
    textWaitForSkip : string (default: "skip after" (translates to PT and EN))
    displayTimetoSkip : boolean,  (default: true)
    textCanSkip : string (default: "skip to video" (translates to PT and EN))
    controlBar : {
      fullscreen : boolean, (default: false)
      muteToggle : boolean, (default: false)
      remainingTime : boolean, (default: true)
      text : string (default: "advertisement" (translates to PT and EN)),
      hidden : boolean (default: false)
    }
  });
});

License

MIT. Copyright (c) YouOn <youongroup.com>

1.1.1

4 years ago

1.1.0

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago