mirror of
https://github.com/langhuihui/monibuca.git
synced 2026-04-23 01:07:03 +08:00
f4eab4cf516c5198f3f0b9a8c4c5019cd1d03ffb
Introduction
Monibuca is a highly scalable high-performance streaming server development framework developed purely for Go
Usage
package main
import (
"context"
"m7s.live/m7s/v5"
_ "m7s.live/m7s/v5/plugin/debug"
_ "m7s.live/m7s/v5/plugin/hdl"
_ "m7s.live/m7s/v5/plugin/rtmp"
)
func main() {
m7s.Run(context.Background(), "config.yaml")
}
More Example
see example directory
Create Plugin
import (
"m7s.live/m7s/v5"
)
type MyPlugin struct {
m7s.Plugin
}
var _ = m7s.InstallPlugin[MyPlugin]()
Languages
Go
53.5%
JavaScript
26.6%
C++
15.2%
C
1.5%
HTML
1.2%
Other
1.9%