视频播放器仓库
narro e607fdff43 初始状态不显示错误信息 5 年前
__mocks__ init 6 年前
demo init 6 年前
scripts for windows. 5 年前
src 初始状态不显示错误信息 5 年前
.babelrc init 6 年前
.editorconfig init 6 年前
.eslintignore init 6 年前
.eslintrc.json init 6 年前
.gitignore init 6 年前
.nvmrc init 6 年前
.travis.yml init 6 年前
LICENSE.md init 6 年前
README.md update README.md 5 年前
browserslist init 6 年前
generateConfig.js init 6 年前
package-lock.json init 6 年前
package.json add npm-cmd: prepare & fix videoTitle toggle bug. 5 年前
postcss.config.js init 6 年前
webpack.config.js init 6 年前

README.md

Fork from mderrick/react-html5video

extension

  • Add speed/playbackRate control
  • ie9 support. (fullscreen feature only support ie11.)

Install dependencies.

$ npm install

Start server.

$ npm start

Build dist.

$ npm run build

Install package.

$ npm install https://git.links123.net/links123.com/video_player.git --save

Usage

import { DefaultPlayer as Video } from 'react-html5video';
import 'react-html5video/dist/styles.css';

const Player = () => (
  <Video autoPlay>
    <source src="demo.mp4" type="video/mp4" />
  </Video>
)