Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
更新文档
  • Loading branch information
youxiuchen authored Sep 10, 2023
1 parent 3c9d76b commit c0e34dc
Showing 1 changed file with 36 additions and 3 deletions.
39 changes: 36 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,44 @@
[西瓜官方文档](http://h5player.bytedance.com/)



### 魔改说明
因业务需要特基于西瓜播放器源代码基础上进行魔改,使其支持ws-flv协议。后续考虑在此基础上再添加其他解码功能。使用方法与官方保持一致。
flv插件自行打包安转自己项目中
[flv视频演示地址](http://h5player.bytedance.com/)
flv插件自行打包安转自己项目中

ws-flv示例页面 (https://github.com/youxiuchen/xgplayerpro/edit/main/fixtures/flv/index.html)

页面调试

```
yarn
yarn build:flv
以服务形式打开flv示例页面
```

```
// 打包flv插件
执行 yarn build
选择 xgplayer-flv
// 项目中引入
import FlvPlayer from 'xgplayer-flv插件路径'
//使用
new window.Player({
id: 'mse',
isLive: true,
playsinline: true,
url: 'http://127.0.0.1:8081/live/liveStream.flv',
autoplay: true,
height: window.innerHeight,
width: window.innerWidth,
plugins: [window.FlvPlayer]
})
```



0 comments on commit c0e34dc

Please sign in to comment.