All Projects → cdnbye → gosignaler

cdnbye / gosignaler

Licence: other
A signaling server for hlsjs-p2p-engine, written by golang

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects
Makefile
30231 projects

The signal server of hlsjs-p2p-engine

install dependency

git clone https://github.com/cdnbye/gosignaler.git

go get github.com/gorilla/websocket

compile

cd gosignaler && make

deploy

Upload binary file to server, create cert directory with crt.pem and crt.key, then start service:

chmod +x admin.sh

./admin.sh start

test

import Hls from 'cdnbye';
var hlsjsConfig = {
    p2pConfig: {
        wsSignalerAddr: 'ws://YOUR_SIGNAL',
        // Other p2pConfig options provided by hlsjs-p2p-engine
    }
};
// Hls constructor is overriden by included bundle
var hls = new Hls(hlsjsConfig);
// Use `hls` just like the usual hls.js ...

go语言版的 CDNBye 信令服务器,可用于Web、安卓、iOS SDK等所有CDNBye产品

安装依赖

git clone https://github.com/cdnbye/gosignaler.git

go get github.com/gorilla/websocket

编译二进制文件

cd gosignaler && make

部署

将编译生成的二进制文件上传至服务器,并在同级目录创建cert文件夹,将证书和秘钥文件分别改名为crt.pemcrt.key放入cert,之后启动服务:

chmod +x admin.sh

./admin.sh start

测试

import Hls from 'cdnbye';
var hlsjsConfig = {
    p2pConfig: {
        wsSignalerAddr: 'ws://YOUR_SIGNAL',
        // Other p2pConfig options provided by hlsjs-p2p-engine
    }
};
// Hls constructor is overriden by included bundle
var hls = new Hls(hlsjsConfig);
// Use `hls` just like the usual hls.js ...
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].