Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.41 KB

guide.md

File metadata and controls

51 lines (34 loc) · 1.41 KB

usage guide

Getting started

Setup

First include playkit-plugin-example.js after kaltura-player script in your web page.

  <script src="https://raw.githack.com/kaltura/kaltura-player-js/master/dist/kaltura-ovp-player.js"></script>
  <script src="./playkit-plugin-example.js"></script>

Add the plugin-example to the player config under the plugins section.

    const config = {
      targetId: 'player-placeholder',
      provider: {
        partnerId: 1234567,
      },
      plugins: {
        pluginExample: {},
      }
    };

const player = KalturaPlayer.setup(config);

Configuration

You can see the Example plugin full configuration options here

You can find configuration example here

Full working example

You can find Full working example here

API docs

API docs

Demo

demo