hydeo
v0.2.25
Published
Hydeo is an html5 video player.
Downloads
10
Readme
Hydeo
Hydeo is an html5 video player based on react.
Installation
$ npm install --save-dev hydeo
Getting started
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>
);
}