mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
docs: ✏️ (xgplayer-flv.js) fix readme
This commit is contained in:
parent
d4ab2b578c
commit
bb1afcf626
@ -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
|
||||
})
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user