Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sericaia/react-html-video
React HTML5 Video
https://github.com/sericaia/react-html-video
Last synced: 19 days ago
JSON representation
React HTML5 Video
- Host: GitHub
- URL: https://github.com/sericaia/react-html-video
- Owner: sericaia
- License: mit
- Created: 2015-12-16T23:32:11.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-17T00:28:00.000Z (almost 9 years ago)
- Last Synced: 2024-10-07T07:57:23.654Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 9.4 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Getting started
```shell
npm install
npm start
```#### Example
```js
import React, { Component } from 'react'
import Video from './Video'export default class VideoExample extends Component {
constructor (props) {
super(props)this.state = {}
}render () {
var videoSrc = [
'bunny.mp4',
'bunny.ogg'
]return (
)
}
}
```