2024-06-02 13:33:22 +08:00
2024-05-31 14:13:35 +08:00
2024-05-29 14:29:52 +08:00
2024-06-02 13:33:22 +08:00
2024-05-31 14:13:35 +08:00
2024-05-11 15:11:46 +08:00
2024-04-11 20:23:23 +08:00
2024-05-07 08:58:21 +08:00
2024-05-31 14:13:35 +08:00
2024-05-11 15:11:46 +08:00
2024-04-03 17:56:20 +08:00
2024-05-07 08:58:21 +08:00
2024-05-07 08:58:21 +08:00
2024-03-19 08:41:26 +08:00
2024-05-31 14:13:35 +08:00
2024-05-31 15:34:36 +08:00
2024-04-16 19:55:48 +08:00
2024-04-16 19:55:48 +08:00
2024-04-11 20:23:23 +08:00
2024-04-11 20:23:23 +08:00
dev
2024-05-26 16:10:06 +08:00
2024-03-19 10:04:56 +08:00
2024-05-31 14:13:35 +08:00

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]()
Description
🧩 Monibuca is a Modularized, Extensible framework for building Streaming Server
Readme AGPL-3.0 98 MiB
Languages
Go 52.3%
JavaScript 27.3%
C++ 15.6%
C 1.5%
HTML 1.3%
Other 1.9%