增加协议实现的功能

This commit is contained in:
李宇翔
2020-05-15 17:30:59 +08:00
parent c328db87a8
commit 5828b8d803
2 changed files with 36 additions and 0 deletions

View File

@@ -57,6 +57,16 @@ to submit your own plugin
[plugin-cluster]:https://github.com/Monibuca/plugin-cluster
[plugin-jesscia]:https://github.com/Monibuca/plugin-jesscia
# Protocol Functions
| Protocol | Pusherpush-->Monibuca |Source-->Monibucapull|Monibuca-->Playerpull|Monibucapush-->Other Server
|---------| -------------|-------------| -------------|-------------|
|rtmp|✔||✔|
|rtsp|✔|✔||
|http-flv|||✔|
|hls||✔|✔|
|ws-flv|||✔|
# Documentation
[http://docs.monibuca.com/en](http://docs.monibuca.com/en).

26
go.gv Normal file
View File

@@ -0,0 +1,26 @@
digraph G {
wall[label="翻墙"]
wall2[label="翻墙"]
gateway[label="访问8081"]
proxy[label="export GOPROXY=https://goproxy.io,direct"]
build[label="go build"]
get[label="go get"]
mod[label="go mod init"]
run[label="go run main.go"]
bin[label="./monibuca"]
bin2[label="GOPATH/bin/monibuca"]
clone[label="clone project"]
getDemo[label="go get github.com/langhuihui/monibuca"]
hasGoMod[shape=diamond label="has go.mod"]
clone->hasGoMod
hasGoMod->proxy[label="yes"]
proxy->build
hasGoMod->wall[label="no"]
hasGoMod->mod[label="no"]
mod->proxy
wall->get
get->run
get->build->bin->gateway
run->gateway
wall2->getDemo->bin2->gateway
}