mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
增加协议实现的功能
This commit is contained in:
10
README.md
10
README.md
@@ -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 | Pusher(push)-->Monibuca |Source-->Monibuca(pull)|Monibuca-->Player(pull)|Monibuca(push)-->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
26
go.gv
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user