Files
monibuca/example/readflv/main.go
T
langhuihui fdcc85d932 dev
2024-04-25 20:28:28 +08:00

16 lines
253 B
Go

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"
_ "m7s.live/m7s/v5/plugin/webrtc"
)
func main() {
m7s.Run(context.Background(), "config.yaml")
}