Basic Integration
Load the SDK
The most easy approach is to load the nexxPLAY SDK File and prepare empty HTML Containers, which will be filled by the Player after the SDK has been loaded. After Loading the Script File, the nexxPlay Framework can be used.
With the JavaScript Embed method, the player can be configured and controlled completely from the main page via the _play
namespace.
To embed the SDK, use the following Code:
The SDK itself might download additional Scripts, so the complete Loading Process is an async Mechanism. The SDK will notify the surrounding Page via an Event on window
, when the SDK is ready to use. As some older Browsers do not work well with addEventListener
, another Option is to create a global Function onPlayReady
, that the Player will automatically call, once the SDK is ready to use.
Adding a new Player Instance
The most simple Way to start a Media Player is to tell the SDK to fill an existing HTML Container.
The following STREAMTYPE
Values are currently supported:
video
audio
live
radio
scene
playlist
audioalbum
rack
collection
set
Supported in the SDK (but not in iFrames) are also custom Lists of Media Types (MEDIA-ID is a comma seperated List in this Case):
videolist
audiolist
scenelist
Depending on the nexxPLAY Settings, controlled in nexxOMNIA, the Player will now automatically start inside the given Container.
The addPlayer
Method will return a _play.PlayerInstance
Object, which can be used to control the Player via JavaScript after Initialization.
Last updated