Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cdnbye/p2p-ckplayer

嵌入P2P引擎的CKPlayer,视频网站省流量&加速神器
https://github.com/cdnbye/p2p-ckplayer

cdnbye ckplayer hls hlsjs html5 p2p player webrtc

Last synced: 28 days ago
JSON representation

嵌入P2P引擎的CKPlayer,视频网站省流量&加速神器

Awesome Lists containing this project

README

        


CKPlayer
CDNBye


P2P-CKPlayer

![image](figs/screen.jpg)

## 简介
[CKPlayer](http://www.ckplayer.com/),支持http协议下的flv,f4v,mp4,支持rtmp视频流和rtmp视频回放,
支持m3u8格式,是你做视频直播,视频点播的理想播放器。
本项目属于非官方定制版,嵌入了P2P加速引擎CDNBye [hlsjs-p2p-engine](https://github.com/cdnbye/hlsjs-p2p-engine),
播放hls流支持P2P加速,API与CKPlayer保持一致,使用方法参考[quick-start.html](quick-start.html)。

## 示例
```javascript

var videoObject = {
container: '#video',//“#”代表容器的ID,“.”或“”代表容器的class
variable: 'player',//该属性必需设置,值等于下面的new chplayer()的对象
autoplay:true,
html5m3u8:true,
video:'https://video-dev.github.io/streams/x36xhzz/url_2/193039199_mp4_h264_aac_ld_7.m3u8',//视频地址
hlsjsConfig: { // hlsjs和CDNBye的配置参数
debug: false,
// Other hlsjsConfig options provided by hls.js
p2pConfig: {
logLevel: true,
live: false, // 如果是直播设为true
// Other p2pConfig options provided by CDNBye
// https://github.com/cdnbye/hlsjs-p2p-engine/blob/master/docs/%E4%B8%AD%E6%96%87/API.md
}
}
};
var player = new ckplayer(videoObject);

```