@foxford/react-hls

2.3.0 • Public • Published

react-hls

HLS player for react applications. Demo here.

Installation

npm install --save react-hls

cd node_modules/hls.js

npm install

Hls.js library imports from original sources (src folder), that's why you need to install hls.js dependencies and add folder to babel-loader config as "include" argument in your webpack configuration. For more info see babel-loader

/node_modules\/hls\.js/

Usage example

import React, { Component } from 'react';
import HLSPlayer from 'react-hls';
import 'react-hls/src/style.css'; // need to import basic styles
import 'react-hls/src/icons.css'; // need to import basic icons

class HLSPage extends Component {
 render() {
   const source = 'http://www.streambox.fr/playlists/test_001/stream.m3u8';

   return (
     <div>
       <HLSPlayer source={source} />
     </div>
   );
 }
}

export default HLSPage;

Run example


npm run example

Notes

Duration & volume controls made with rc-slider, see docs - https://github.com/react-component/slider

Readme

Keywords

Package Sidebar

Install

npm i @foxford/react-hls

Weekly Downloads

3

Version

2.3.0

License

MIT

Unpacked Size

49.6 kB

Total Files

21

Last publish

Collaborators

  • foxford-service
  • iammalikov
  • dmeremyanin
  • romanlex
  • alexkonst
  • stud-mai