Compare commits

...

1 Commits

Author SHA1 Message Date
langhuihui
cc89bbb61b 删除所有子模块 2020-05-05 14:33:44 +08:00
16 changed files with 29 additions and 81 deletions

39
.gitmodules vendored
View File

@@ -1,39 +0,0 @@
[submodule "engine"]
path = engine
url = https://github.com/Monibuca/engine
[submodule "instancemanager"]
path = instancemanager
url = https://github.com/Monibuca/monica
[submodule "docs"]
path = docs
url = https://github.com/Monibuca/docs
[submodule "plugins/rtmp"]
path = plugins/rtmp
url = https://github.com/Monibuca/rtmpplugin
[submodule "plugins/hls"]
path = plugins/hls
url = https://github.com/Monibuca/hlsplugin
[submodule "plugins/hdl"]
path = plugins/hdl
url = https://github.com/Monibuca/hdlplugin
[submodule "plugins/record"]
path = plugins/record
url = https://github.com/Monibuca/recordplugin
[submodule "plugins/jessica"]
path = plugins/jessica
url = https://github.com/Monibuca/jessicaplugin
[submodule "plugins/logrotate"]
path = plugins/logrotate
url = https://github.com/Monibuca/logrotateplugin
[submodule "plugins/cluster"]
path = plugins/cluster
url = https://github.com/Monibuca/clusterplugin
[submodule "plugins/gateway"]
path = plugins/gateway
url = https://github.com/Monibuca/gatewayplugin
[submodule "plugins/rtsp"]
path = plugins/rtsp
url = https://github.com/Monibuca/rtspplugin.git
[submodule "plugins/ts"]
path = plugins/ts
url = https://github.com/Monibuca/tsplugin.git

View File

@@ -37,25 +37,25 @@ to submit your own plugin
| Project | Description |
|---------| -------------|
|[rtmpplugin]|rtmp protocol support.push rtmp stream to monibuca.play stream from monibuca.
|[rtspplugin]|rtsp protocol support.pull rtsp stream to monibuca
|[hlsplugin]|pull hls stream to monibuca
|[tsplugin]|used by hlsplugin. read ts file to publish
|[hdlplugin]|http-flv protocol support. pull http-flv stream from monibuca
|[gatewayplugin]|a console and dashboard to display information and status of monibuca ,also can display UI of other plugins
|[recordplugin]|record multimedia stream to flv files
|[clusterplugin]|cascade transmission of multimedia by cluster network
|[jessicaplugin]|play multimedia stream through websocket protocol
|[plugin-rtmp]|rtmp protocol support.push rtmp stream to monibuca.play stream from monibuca.
|[plugin-rtsp]|rtsp protocol support.pull rtsp stream to monibuca
|[plugin-hls]|pull hls stream to monibuca
|[plugin-ts]|used by plugin-hls. read ts file to publish
|[plugin-hdl]|http-flv protocol support. pull http-flv stream from monibuca
|[plugin-gateway]|a console and dashboard to display information and status of monibuca ,also can display UI of other plugins
|[plugin-record]|record multimedia stream to flv files
|[plugin-cluster]|cascade transmission of multimedia by cluster network
|[plugin-jesscia]|play multimedia stream through websocket protocol
[rtmpplugin]: https://github.com/Monibuca/rtmpplugin
[rtspplugin]: https://github.com/Monibuca/rtspplugin
[hlsplugin]:https://github.com/Monibuca/hlspplugin
[tsplugin]:https://github.com/Monibuca/tspplugin
[hdlplugin]:https://github.com/Monibuca/hdlplugin
[gatewayplugin]:https://github.com/Monibuca/gatewayplugin
[recordplugin]:https://github.com/Monibuca/recordplugin
[clusterplugin]:https://github.com/Monibuca/clusterplugin
[jessicaplugin]:https://github.com/Monibuca/jessicaplugin
[plugin-rtmp]: https://github.com/Monibuca/plugin-rtmp
[plugin-rtsp]: https://github.com/Monibuca/plugin-rtsp
[plugin-hls]:https://github.com/Monibuca/hlspplugin
[plugin-ts]:https://github.com/Monibuca/tspplugin
[plugin-hdl]:https://github.com/Monibuca/plugin-hdl
[plugin-gateway]:https://github.com/Monibuca/plugin-gateway
[plugin-record]:https://github.com/Monibuca/plugin-record
[plugin-cluster]:https://github.com/Monibuca/plugin-cluster
[plugin-jesscia]:https://github.com/Monibuca/plugin-jesscia
# Documentation

1
docs

Submodule docs deleted from abb0bfe26a

1
engine

Submodule engine deleted from a08538e66e

Submodule instancemanager deleted from fccad5721d

22
main.go
View File

@@ -5,17 +5,17 @@ import (
"path/filepath"
"runtime"
_ "github.com/Monibuca/clusterplugin"
. "github.com/Monibuca/engine"
_ "github.com/Monibuca/gatewayplugin"
_ "github.com/Monibuca/hdlplugin"
_ "github.com/Monibuca/hlsplugin"
_ "github.com/Monibuca/jessicaplugin"
_ "github.com/Monibuca/logrotateplugin"
_ "github.com/Monibuca/recordplugin"
_ "github.com/Monibuca/rtmpplugin"
_ "github.com/Monibuca/rtspplugin"
_ "github.com/Monibuca/tsplugin"
. "github.com/Monibuca/engine/v2"
// _ "github.com/Monibuca/plugin-cluster"
_ "github.com/Monibuca/plugin-gateway"
_ "github.com/Monibuca/plugin-hdl"
_ "github.com/Monibuca/plugin-hls"
_ "github.com/Monibuca/plugin-jessica"
_ "github.com/Monibuca/plugin-logrotate"
_ "github.com/Monibuca/plugin-record"
_ "github.com/Monibuca/plugin-rtmp"
_ "github.com/Monibuca/plugin-rtsp"
_ "github.com/Monibuca/plugin-ts"
)
func main() {

Submodule plugins/cluster deleted from 129d279ca9

Submodule plugins/gateway deleted from dadead2428

Submodule plugins/hdl deleted from 86763b9804

Submodule plugins/hls deleted from af48582e1f

Submodule plugins/jessica deleted from 113e631b71

Submodule plugins/record deleted from 1996035ea9

Submodule plugins/rtmp deleted from 2e3b40de36

Submodule plugins/rtsp deleted from 16ed9f64c8

Submodule plugins/ts deleted from 4e92ebd409