docs: ✏️ (xgplayer-flv.js) fix readme

This commit is contained in:
gemstone 2023-06-09 17:45:49 +08:00
parent d4ab2b578c
commit bb1afcf626

View File

@ -1,29 +1,37 @@
# Introduction
A extension plugin which integrated [hls.js](https://github.com/video-dev/hls.js) based on xgplayer, it can support play hls video
A extension plugin which integrated [flv.js](https://github.com/Bilibili/flv.js/) based on
xgplayer, it can support play flv video
# How to use
### install
```shell
$ npm istall xgplayer@alpha
$ npm istall xgplayer-flv.js@alpha
$ npm istall xgplayer
$ npm istall xgplayer-flv.js
```
### Usage
html
```html
<div id="vs"></div>
<div id="vs"></div>
```
js
```javascript
import Player from 'xgplayer'
import 'xgplayer/dist/xgplayer.min.css'
import FlvJsPlugin from 'xgplayer-flv.js'
const player = new Player({
id: 'vs',
url: '../xgplayer-demo.hls',
plugins: [FlvJsPlugin],
flvJsPlugin: {} // config for plugin FlvJsPlugin
// If use CDN loading,you can Get the plugin through window.FlvJsPlugin
})
id: 'vs',
url: '../xgplayer-demo.flv',
plugins: [FlvJsPlugin],
flvJsPlugin: {} // config for plugin FlvJsPlugin
// If use CDN loading,you can Get the plugin through window.FlvJsPlugin
})
```