Hydeo is an html5 video player based on react.
$ npm install --save-dev hydeo
import { Hydeo, Controls, Play, Sound, Fullscreen, Progress, Played, Buffered } from 'hydeo';
render() {
return (
<Hydeo autoPlay src="http://www.streambox.fr/playlists/x36xhzz/x36xhzz.m3u8">
<Controls>
<Play />
<Sound />
<FullScreen />
<Progress>
<Played />
<Buffered />
</Progress>
</Controls>
</Hydeo>
);
}