This is a simple video player developped for onRewind.tv : the incredible LIVE-review platforme !
- Trello Board : https://trello.com/b/X5CO3Ms0/onrewind-simplevideoplayer
- GitHub Repo : https://github.com/zazapeta/simpleVideoPlayer
- Installation :
- if git installed :
npm install zazapeta/SimpleVideoPlayer
- else :
npm install -i --save https://github.com/zazapeta/simpleVideoPlayer/tarball/master
- if git installed :
Step:
- Project initialisation :
- Trello Board
- GitHub repo
- npm init (because i ♥ npm)
- Mockups your app ! (Even is not open source, i like Balsamik)
- Prepare your brain :
- Read HTML video tag API on the fabulous W3C.org (http://www.w3.org/wiki/HTML/Elements/video)
- and Video tag event (http://www.w3.org/2010/05/video/mediaevents.html)
- Library :
- Front :
- ReactJS (with Alt for more Fun ^^ and discover something new [isomorphic powa !])
- Mocha for testing
- Watchnight for end-to-end testing
- Back : None
- Front :
- Deployment :
- GitHub
- Describe Usage :
import {SimpleVideoPlayer as SVP} from 'simplevideoplayer';
import React from 'react';
class App extends React.Component {
render() {
return (
<div id="svp">
<h1>Simple Video Player !</h1>
<SVP
src = "video.mp4"
/>
</div>
}
}
React.render(<App/>, document.getElementById('app'));