1 Star 0 Fork 52

hy-liulei/Monibuca

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 731 Bytes
一键复制 编辑 原始数据 按行查看 历史
langhuihui 提交于 2020-03-13 15:30 . 修改获取配置文件的方法
package main
import (
"flag"
"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"
)
func main() {
addr := flag.String("c", "", "config file")
flag.Parse()
if *addr == "" {
_, currentFile, _, _ := runtime.Caller(0)
configFIle := filepath.Join(filepath.Dir(currentFile), "config.toml")
Run(configFIle)
} else {
Run(*addr)
}
select {}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/58938614/Monibuca.git
git@gitee.com:58938614/Monibuca.git
58938614
Monibuca
Monibuca
master

搜索帮助