Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 1.37 KB

README.md

File metadata and controls

27 lines (25 loc) · 1.37 KB

ng-kaltura-player

Overview

A directive for AngularJS for embedding the Kaltura video player.
The directive supports basic embedding as well an API for controlling the player using notifications and events registration.
Player plugins can be configured as well.

Setup

  1. Download the directive file: ng-kaltura-player.js and add it to your HTML page:
<script src="ng-kaltura-player.js"></script>
  1. Inject the 'Kaltura.directives' namespace to your Angular application:
angular.module('App', ['Kaltura.directives'])
  1. Use the directive in your HTML markup:
<kaltura-player width="640px" height="320px"></kaltura-player>
  1. Explore the examples below to learn how to configure the player and use its API

Examples