For the next step please check our Storm JavaScript Player - Stream & Server guide where you’ll learn how to connect the player with Storm Streaming Cloud or Server instance.
Storm JavaScript Player is very easy to install. You can either grab a script file from our CDN (IIFE format) or install the player using NPM or Yarn.
Feel free to pick our Storm Player (in IIFE format) from our CDN:
<script src="https://cdn-scripts.stormstreaming.com/stormplayer/4-latest.min.js"></script>
Optionally you can link to the latest major.minor, for example 4.0-latest.min.js, or pick specific release: 4.0.0.min.js
To integrate Storm Player into your project using NPM, execute the following command:
npm install @stormstreaming/stormplayer
To incorporate Storm Player into your project using Yarn, execute the following command:
yarn add @stormstreaming/stormplayer
You can manually grab index.js from /dist/iife folder on our Git-Hub page. You will find the latest release here: https://github.com/StormStreaming/stormplayer-js/releases
Storm Player comes with all source-codes available for free. Player can be easily modified and customized according to needs. In order to recompile the player NPM is required. Project can be downloaded and/or forked from https://github.com/StormStreaming/stormplayer-js. Below you'll find basic usage.
npm install
This command will install all required dependencies.
npm build
Compiles all styles, script and html. Generated files will be placed within the dist folder.
npm dev
Watches for changes in files and compiles code to executable JavaScript. A local HTTP server will be
started as well.
Storm Player comes in IIFE, ESM, AMD, UMD and CJS formats. If you are unfamiliar with these, please grab IIFE version, as it's easiest to embed in a modern browser. All packages are located in /dist folder under their respective names.
Once the player is properly linked to your page, a player instance can be created. Please keep in mind that you can create and manage multiple instances of Storm Player at a time. Each instance requires a valid configuration object in order to work properly.
const streamConfig = {
stream: {
serverList: [{
host: "localhost",
application: "live",
port: 80,
ssl: false
}],
streamKey: "test"
},
settings: {
autoStart: false,
},
};
const playerConfig = {
containerID: "container",
width: "100%",
height: "100%",
aspectRatio: "16:9",
title: "Test title123",
subtitle: "Subtitle223",
};
Initialization will look different depending on picked JavaScript format:
const player = stormPlayer(playerConfig, streamConfig);
import {StormPlayer} from "../../dist/esm/index.js";
const storm = new StormPlayer(playerConfig, streamConfig);
const storm = stormPlayer.create(playerConfig, streamConfig);
requirejs(['../../dist/amd/index'], function(storm) {
const stormPlayer = new storm.create(playerConfig, streamConfig);
});
Create a free ticket and our support team will provide you necessary assistance.