Socket
Socket
Sign inDemoInstall

react-jplayer

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-jplayer

Html5 audio and video player library for React


Version published
Weekly downloads
76
increased by38.18%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Coverage Status dependencies Status devDependencies Status License: MIT

react-jPlayer

A Html5 audio/video player that has been inspired by the jQuery plugin jPlayer but without the jQuery dependency and much, much better.

react-jPlayer depends on Redux. Redux is a tiny 2KB and is well worth it to keep the react-jPlayer components componentized.

jPlayer does not support playlists yet. This will be comming in an upcoming npm package called react-jPlaylist.

Installation

NPM

npm install --save react-jplayer

UMD

Available from the /dist/ folder. For example, if you copied the /dist/ folder to a /packages/jPlayer/ folder at the root of your project then the src tags would look like this:

<script src="./packages/jPlayer/dist/js/jPlayer.js"></script>

<script src="./packages/jPlayer/dist/css/jPlayer.css"></script>

<script src="./packages/jPlayer/dist/css/sleek.css"></script>

Module is exported to a global variable called ReactJPlayer.

Examples

Run the jPlayer examples.

git clone https://github.com/MartinDawson/react-jPlayer.git

cd react-jPlayer/examples

npm install

npm run dev

open http://localhost:8080/

Most Basic Setup

The examples in the project contain legacy browser, mobile fixes and helpers such as the run-time events and props showing. If you just want the most basic setup to get an understanding of jPlayer, you can follow the code below.

If you want the jPlayer to look good you will need to include the examples .css or .less files from src or dist.

import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import { createStore, combineReducers } from 'redux';
import { getInitialStates, reducer, connect, JPlayer, Gui, SeekBar,
  Audio, FullScreen, Mute, Play, PlayBar,
  VolumeBar, Duration, CurrentTime, BrowserUnsupported,
 } from 'react-jplayer';

/* Our stateless jPlayer component. This function holds everything to do with the jPlayer components. 
If you wanted a video player instead, you could just replace `<Audio />` with `<Video />`
and provide a video src instead of an audio src as the first element in the options.media.sources. */

const AudioPlayer = () => (
  <JPlayer className="jp-sleek">
    <Audio />
    <Gui>
      <div className="jp-controls jp-icon-controls">
        <Play><i className="fa">{/* Icon set in css*/}</i></Play>
        <div className="jp-progress">
          <SeekBar>
            <PlayBar />
            <CurrentTime />
            <Duration />
          </SeekBar>
        </div>
        <div className="jp-volume-container">
          <Mute>
            <i className="fa">{/* Icon set in css*/}</i>
          </Mute>
          <div className="jp-volume-slider">
            <div className="jp-volume-bar-container">
              <VolumeBar />
            </div>
          </div>
        </div>
        <FullScreen><i className="fa fa-expand" /></FullScreen>
      </div>
      <BrowserUnsupported />
    </Gui>
  </JPlayer>
);

/* All jPlayer options must be defined statically on the jPlayer component. 
These options will be deep merged with the default jPlayer options so you actually don't 
even need to specify any apart from the media.sources if you just want the default options. */

AudioPlayer.options = {
  verticalVolume: true,
  media: {
    sources: {
      m4a: 'http://jplayer.org/audio/m4a/Miaow-07-Bubble.m4a',
    },
  },
};

/* react-jPlayer provides it's own connect function which will return a connected jPlayer. */

const ConnectedAudioPlayer = connect(AudioPlayer);

/* We now need to connect our jPlayer to the store now so each of the components inside
react-jPlayer can talk to each other. This also gives you a jPlayers object with the AudioPlayer
in it, in your redux state. */

const store = createStore(combineReducers(reducer), getInitialStates(ConnectedAudioPlayer));

const App = () => (
  <ConnectedAudioPlayer />
);

/* Pass the store to the provider. See Redux for more information. */

ReactDOM.render((
  <Provider store={store}>
    <App />
  </Provider>
), document.getElementById('app'));

Actions

Returns

(Object): All actions return an object that is meant to be passed to redux's dispatch().

setOption(id, key, value)

Sets any jPlayer option. A few of the other actions are just helpers for modifying the options and could also be modified by this function. You should still use the other actions to modify the option if you can as most do extra logic and error handling.

Arguments
  1. id (string): Id of the jPlayer to apply this to.
  2. key (string): The name of the option that you want to set. Specifying nested keys is not supported.
  3. value (any): The value to set the option to.
setMedia(id, media)

Sets the media on the jPlayer.

Arguments
  1. id (string): Id of the jPlayer to apply this to.
  2. media (object): The new media you want to set.
clearMedia(id)

Clear the media and reset all status values. This will be rarely used, if you are setting new media you don't need to use this function beforehand as setMedia already internally clears existing values before setting a new media.

Arguments
  1. id (string): Id of the jPlayer to apply this to.
play(id, [time])

Play the media.

Arguments
  1. id (string): Id of the jPlayer to apply this to.
  2. time (number): The time that the jPlayer should start playing from, defaults to the current time.
pause(id, [time])

Play the media.

Arguments
  1. id (string): Id of the jPlayer to apply this to.
  2. time (number): The time that the jPlayer should pause from, defaults to the current time.

Options

todo.

Features

  • Cross compatible with many legacy different Html5 browsers
  • Fully customizable, modular and componentized
  • All Html5 audio/video file types are supported
  • Comes with a fully reponsive css skin for your players
  • No jQuery dependency that is in the standard jPlayer
  • Fast and performant

To Note

  • No flash player support because flash is dead. I also haven't been able to find a browser that React supports that also didn't support Html5 video/audio players either which makes flash useless.
  • Dependency on Redux

Supported browsers

  • Chrome v15+
  • FireFox v15+
  • Edge 13+
  • Internet Explorer 9+
  • Opera v16+
  • Yandex
  • Windows Safari 5.1
  • IOS Safari 5.1+
  • Chrome for Android v36+
  • Android browser 4+
  • IEMobile 11¹

¹partially tested without audio/video because browserstack emulators don't support it.

Documentation

getInitialStates([jPlayers])

A required function that deep merges the static options that you specified on your jPlayer with react-jPlayer's defaults. The result of this must be passed to your stores initial state.

Arguments
  1. jPlayer(s) (Array or Function): Accepts either an array of jPlayers or a single jPlayer.
Returns

(Object): The initial state for the jPlayer(s) that needs to be passed to the Redux store.

reducer

A required object. The jPlayer reducer that will be called whenever a jPlayer function is called or dispatched. Must be passed to your store.

connect(jPlayer)

Required to connect your jPlayer to the jPlayer store by wrapping Redux's original connect.

Arguments
  1. jPlayer: (Function)
Returns

(function): A function that wraps your jPlayer. This means that you can use Redux original connect to wrap this connect with as well if you wanted to pass aditional Redux data from the store to your jPlayer.

Static Properties
  1. id: The id of the jPlayer, this is whatever name you called your jPlayer function. This is passed down as a context so that react-jPlayer can internally know which jPlayer is the current one.
  2. jPlayer: The original function that you passed in. E.g. if you wanted to read the original jPlayer's options that you specified.
Renders

The connected jPlayer. Any additional props that you passed in are passed through to your jPlayer so you can use them as usual.

Components

<JPlayer />

A required component that needs to be the root of any other jPlayer components. Handles the states that are applied to the jPlayer DOM element.

<GUI />

Should wrap all of the components that the user interacts with. Handles the fading in and out when in full screen mode.

<SeekBar />

Should wrap the <PlayBar /> and <BufferBar />. Handles the user being able to seek to a new time when the user clicks, drags or touches on the progress bar.

<PlayBar />

Shows how much of the media has been played so far.

<BufferBar />

Shows how much of the media has been downloaded so far. This also takes in to consideration the user seeking to multiple points on the media and skipping parts of the media.

<Poster />

The poster to be displayed for the media. Uses media.poster as the src for the image.

<Video />

If the first media source that you have supplied to media.sources is an video format and it is a valid url that can be played then react-jPlayer will use this component and set the src to what you supplied.

<Audio />

If the first media source that you have supplied to media.sources is an audio format and it is a valid url that can be played then react-jPlayer will use this component and set the src to what you supplied.

<Title />

Renders the media title as media.artist - media.title.

<FullScreen />

Handles clicks on this component toggling the full screen of the jPlayer.

<Mute />

Handles clicks on this component toggling the mute of the jPlayer.

<Play />

Handles clicks on this component setting the jPlayer to be paused or playing.

<Repeat />

Handles clicks on this component toggling the looping of the jPlayer.

<PlaybackRateBar />

Handles clicks, dragging or touches on this component setting the playback rate of the media.

<PlaybackRateBarValue />

This is used by the <PlaybackRateBar /> by default so the majority of applications won't need to use this. Represents the playback rate as the width or height of the component depending on the property verticalPlaybackRate.

<VolumeBar />

Handles clicks, dragging or touches on this component setting the volume of the media.

<VolumeBarValue />

This is used by the <VolumeBar /> by default so the majority of applications won't need to use this. Represents the volume as the width or height of the component depending on the property verticalVolume.

<Download />

Handles clicks on this component downloading the media if the media.free option is true. Warning: This will not make the media secure, i.e. users can still download the song from the network tab. You will need to secure the media this from the server instead. If the browser doesn't support the download attribute then clicks on this component will open a new tab or window with the source media instead.

<Duration />

Renders the durationText of the jPlayer. Renders nothing if the duration hasn't been set yet (i.e IOS until the user manually plays the media).

<CurrentTime />

Renders the currentTimeText of the jPlayer.

<BrowserUnsupported />

Renders html that tells the user to update their browser if jPlayer doesn't support the specified media file.

Misc

classes

classes that react-jPlayer uses internally for each component are exported for you to use for conveniance.

ToDo List

Highest to lowest priority of what needs doing

  • react-jPlayer
  • react-jPlayer documentation
  • react-jPlaylist & documentation
  • react-jCirclePlayer & documentation
  • Acceptance tests

Thanks

BrowserStack

BrowserStack for giving me access to their testing software for free. Contact them if you have a free open-source project for a free account.

Keywords

FAQs

Package last updated on 18 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc