Giter Site home page Giter Site logo

videojs-vast-vpaid's Introduction

videojs-vast-vpaid plugin

Build Status Code Climate Test Coverage

This plugin allows videojs to monetise its videos. To do so, it implements the VAST and VPAID specifications from IAB.

Currently we support VAST and VPAID Flash and HTML5 preroll ads, we will add more VAST ad types as we need them.

It is important to notice that VPAID integration is still in beta and we have not yet released a stable version.

###DEMO HERE!!!

Integration with video.js

To integrate the plugin with videoJs you need to:

1.- Add all files from bin to some path in your server

2.- If don't have videoJs, add their scripts and stylesheet to your page

<link href="http://vjs.zencdn.net/4.12/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/4.12/video.js"></script>

3.- After videoJs add the plugin script stylesheet and swfobject (if you want to support flashvpaid) to your page

<script src="/path/to/swfobject.js"></script>
<link href="/path/to/videojs-vast-vpaid.css" rel="stylesheet">
<script src="/path/to/videojs-vast-vpaid.min.js"></script>

if you need to support older browsers that don't support ES5 add this to your page before the plugin script

<script src="/path/to/es5-shim.js"></script>

if you need to support ie8 add this after the es5-shim.js script

<script src="/path/to/ie8fix.js"></script>

4.- Create you own ads plugin to pass an add media tag to the plugin

Below you have a simple ads-setup-plugin

vjs.plugin('ads-setup', function (opts) {
  var player = this;
  var adsCancelTimeout = 3000;

  var vastAd = player.vastClient({
    //Media tag URL
    url: "http://pubads.g.doubleclick.net/gampad/ads?env=....",
    playAdAlways: true,
    //Note: As requested we set the preroll timeout at the same place thant the adsCancelTimeout
    adCancelTimeout: adsCancelTimeout,
    adsEnabled: !!options.adsEnabled
  });
});

You can also configure the vast plugin using the data-setup attribute

  <video id="example_video_1" class="video-js vjs-default-skin"
         controls preload="auto" width="640" height="264"
         poster="http://video-js.zencoder.com/oceans-clip.png"
         data-setup='{
                  "plugins": {
                          "vastClient":{
                              "url": "http://pubads.g.doubleclick.net/gampad/ads?env=....",
                              "adsCancelTimeout": 5000,
                              "adsEnabled": true
                          }
                  }
             }'>
      <source src="http://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4'/>
      <source src="http://video-js.zencoder.com/oceans-clip.webm" type='video/webm'/>
      <source src="http://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg'/>
      <p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a
              href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
  </video>

Options

adTagUrl

Use it to pass the ad media tag, it can be a string containing the Media tag url

Hardcoded Media Tag

var vastAd = player.vastClient({ adTagUrl: "http://pubads.g.doubleclick.net/gampad/ads?env=....", ... });

or a function that will return the Media tag whenever called

Dynamic Media Tag
var vastAd = player.vastClient({
adTagUrl: getAdsUrl,
...
});

function getAdsUrl() {
     return "http://pubads.g.doubleclick.net/gampad/ads?env=....";
}

On initialization, the plugin well call the function and store the returned Media tag to request the VAST/VPAID ads.

url (deprecated)

This option is deprecated and you should use adTagUrl instead

Use it to pass the ad media tag, it can be a string containing the Media tag url

Hardcoded Media Tag

var vastAd = player.vastClient({ url: "http://pubads.g.doubleclick.net/gampad/ads?env=....", ... });

or a function that will return the Media tag whenever called

Dynamic Media Tag
var vastAd = player.vastClient({
url: getAdsUrl,
...
});

function getAdsUrl() {
     return "http://pubads.g.doubleclick.net/gampad/ads?env=....";
}

On initialization, the plugin well call the function and store the returned Media tag to request the VAST/VPAID ads.

adTagXML

You can now do the VAST xml request on your own with our shinny new adTagXML option.

All you need to do is to pass the request fn as the adTagXML option when you initialize the plugin. See below for an example

Using the adTagXML option
var vastAd = player.vastClient({
adTagXML: requestVASTXML,
...
});

function requestVASTXML(callback) {
   //The setTimeout below is to simulate asynchrony
   setTimeout(function(){
     callback(null, '<VAST version="3.0"><Ad><Inline>...</Inline></Ad></VAST>');
   }, 0);
}

As you can see the requestVASTXML function above expects a node like error-first-callback that needs to be called whenever we are ready to serve the VAST XML.
If you had any error executing the request, you need to pass it as the first argument of the callback and if there was no error pass null as the first argument and the VAST XML string as the second argument.

playAdAlways

Flag to indicate if we must play an ad whenever possible. If set to true the plugin will play an ad every time the user watches a new video or replays the actual video. Defaults to false

adCancelTimeout

Number of milliseconds for the ad to start before canceling it. Defaults to 3000ms

adsEnabled

Flag to disable the ads. Defaults to false.

autoResize

Flag to enable resize of the adUnit on window's resize and orientationchange events. This is useful for responsive players. Defaults to true

vpaidFlashLoaderPath

Path to the vpaidFlashloader swf file. It defaults to '/VPAIDFlash.swf'

Returned object

An invocation to player.vastClient({...}) returns and object that with some helper functions that allow you to dynamically enable or disable the vast plugin, or check if it is enabled.

var vastPlugin = player.vastClient({
   url: getAdsUrl,
   playAdAlways: true,
   //Note: As requested we set the preroll timeout at the same place thant the adsCancelTimeout
   adCancelTimeout: adsCancelTimeout,
   adsEnabled: !!options.adsEnabled
 });

 player.on('reset', function () {
     if (!vastPlugin.isEnabled()) {
       vastPlugin.enable();
     } vastPlugin {
       vastAd.disable();
     }
 });

isEnabled

This function returns true if the player is enabled and false otherwise.

enable

Enables the VAST plugin

disable

Disables the plugin

adUnit

If there is an ad playing (after the vast.adStart event) it will contain an obj like the one below:

player.vast.adUnit= {
   type: {string} <== The possible types are 'VAST' or 'VPAID'
   pauseAd: {function} <== Pauses the ad unit
   resumeAd: {function} <== Resumes the ad unit
   getSrc: {function} <== Returns the MediaFile instance used to play the ad
}

Otherwise it will be null or undefined

player.vast

The returned object described above it is also published as a player property so that you can use it anywhere as long as you have access to the player instance.

   player.vastClient({
     url: getAdsUrl,
     playAdAlways: true,
     //Note: As requested we set the preroll timeout at the same place thant the adsCancelTimeout
     adCancelTimeout: adsCancelTimeout,
     adsEnabled: !!options.adsEnabled
   });

   player.on('reset', function () {
       if (!player.vast.isEnabled()) {
         player.vast.enable();
       } vastPlugin {
         player.vast.disable();
       }
   });

Plugin events

The plugin does trigger some events that can be used for tracking or debugging.

'vast.firstPlay' event

Fired when the user first plays a video or if the playAdAlways option is set to true every time the user replays the same video

'vast.adStart' event

Fired when the ad starts playing

'vast.adSkip' event

Fired when the a vast ad gets skiped

'vast.adError' event

Fired whenever there is an error with the ad. The error itself gets added to the event object in the property 'error'.

'vast.adsCancel' event

Fired whenever the ads are canceled due to an error or because the plugin is not enabled.

'vast.contentStart' event

Fired whenever the video content starts playing

'vast.contentEnded' event

Fired when the video content ends.

'vast.reset' event

Trigger the 'vast.reset' event whenever you want to reset the plugin. Beware that if an ad is playing it will be canceled.

Running the plugin

If you want to run the plugin you need to clone the repo into your local environment

git clone [email protected]:MailOnline/videojs-vast-vpaid.git

and install the dependencies

$ cd videojs-vast-vpaid
$ npm install
$ bower install

after installing the dependencies you are ready to go. If you want to see the available build tasks, run

$ gulp
[12:27:22] Using gulpfile ~/dev/mailOnline/videojs-vast-vpaid/gulpfile.js
[12:27:22] Starting 'default'...
Welcome to MailOnline's new
____   ____.__     .___                     __          ____   ____                  __    ____   ____                .__     .___
\   \ /   /|__|  __| _/  ____    ____      |__|  ______ \   \ /   /_____     _______/  |_  \   \ /   /______  _____   |__|  __| _/
\   Y   / |  | / __ | _/ __ \  /  _ \     |  | /  ___/  \   Y   / \__  \   /  ___/\   __\  \   Y   / \____ \ \__  \  |  | / __ |
\     /  |  |/ /_/ | \  ___/ (  <_> )    |  | \___ \    \     /   / __ \_ \___ \  |  |     \     /  |  |_> > / __ \_|  |/ /_/ |
 \___/   |__|\____ |  \___  > \____/ /\__|  |/____  >    \___/   (____  //____  > |__|      \___/   |   __/ (____  /|__|\____ |
                  \/      \/         \______|     \/                  \/      \/                    |__|         \/          \/

###### Below, you have the list of all the available build tasks ########
╔═════════════════════════╤════════════════════════════════════════════════════════════════════════════════╗
║ Name                    │ Description                                                                    ║
╟─────────────────────────┼────────────────────────────────────────────────────────────────────────────────╢
║ start-dev               │ Starts dev server and watch task.                                              ║
║                         │ If you use "--env production" everything will be minified                      ║
║                         │ and the dist folder will be updated accordingly.                               ║
╟─────────────────────────┼────────────────────────────────────────────────────────────────────────────────╢
║ deploy-demo             │ Builds the demo and deploys it to github pages                                 ║
╟─────────────────────────┼────────────────────────────────────────────────────────────────────────────────╢
║ watch                   │ watches for changes on the plugin files and executes the appropriate tasks     ║
╟─────────────────────────┼────────────────────────────────────────────────────────────────────────────────╢
║ build                   │ This task builds the plugin                                                    ║
╟─────────────────────────┼────────────────────────────────────────────────────────────────────────────────╢
║ build-demo              │ Builds the demo                                                                ║
╟─────────────────────────┼────────────────────────────────────────────────────────────────────────────────╢
║ ci-test                 │ Starts karma test and generates test code coverage, to be used by CI Server    ║
╟─────────────────────────┼────────────────────────────────────────────────────────────────────────────────╢
║ test                    │ Starts karma on 'autowatch' mode with all the libs,                            ║
║                         │ sources and tests of the player                                                ║
╚═════════════════════════╧════════════════════════════════════════════════════════════════════════════════╝

[12:27:22] Finished 'default' after 8.12 ms

Which will show you a table with the main build tasks. If you want start the demo locally just run:

$ gulp start-dev

and open the following link into your browser http://localhost:8085

License

videojs-vast-vpaid plugin is licensed under the MIT License, Version 2.0. View the license file

Copyright (c) 2015 MailOnline

videojs-vast-vpaid's People

Contributors

carpasse avatar fabioroger avatar fetz avatar joshmadewell avatar mischizzle avatar sithmel avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.