THEOplayer
THEOplayer is the universal video player solution created by THEO Technologies. It enables you to quickly deliver cross-platform content playback.
Prerequisites
- A valid THEOplayer license. Request yours via our THEOportal.
Included features
The THEOplayer SDK consists of modular features. This package includes the following features: targets
If you need a different set of features, you can install a different variant of this package:
Alternatively, you can make your own custom build via our THEOportal.
Installation
Install using your favorite package manager for Node (such as npm
or yarn
):
npm install theoplayer
You can also install a specific version instead:
npm install theoplayer@2.82.0
Note that versions earlier than 2.82.0 (release 2021.1.2) are not available on the public npm registry.
Earlier versions are available through our THEOportal.
Usage
Add the THEOplayer library to your JavaScript web app:
const THEOplayer = require('theoplayer');
Depending on your choice of module loader, transpiler or bundler, you may need to use an import
instead:
import * as THEOplayer from 'theoplayer';
Next, create a player instance using the THEOplayer.Player constructor.
Pass it an HTML element that will contain the player, and a configuration object.
let element = document.querySelector('#theoplayer-container');
let configuration = {
license: 'your_theoplayer_license',
libraryLocation: '/url/to/node_modules/theoplayer/'
};
let player = new THEOplayer.Player(element, configuration);
That's it! You should now have a working player on your web page.
You can control this player through its UI, or through the player
variable's JavaScript API.
Documentation
The documentation for THEOplayer is located on our documentation website.
For an example on how to setup THEOplayer, take a look at our Getting started guide.
Support
If you are having issues installing or using the package, first look for existing answers on our documentation website,
and in particular our FAQ.
You can also contact our technical support team by following the instructions on our support page.
Note that your level of support depends on your selected support plan.
License
The contents of this package are subject to the THEOplayer license.