2024-08-21 14:53:01 +08:00
2024-08-21 14:53:01 +08:00
2024-08-15 09:13:13 +08:00
2024-08-21 14:53:01 +08:00
2024-08-21 14:53:01 +08:00
2024-06-05 18:05:56 +08:00
2024-08-17 20:38:10 +08:00
2024-08-10 08:25:27 +08:00
2024-08-15 09:44:00 +08:00
2024-05-11 15:11:46 +08:00
2024-04-03 17:56:20 +08:00
2024-08-01 12:38:45 +08:00
2024-03-19 08:41:26 +08:00
2024-08-21 14:53:01 +08:00
2024-08-21 14:53:01 +08:00
2024-08-21 14:53:01 +08:00
2024-08-21 14:53:01 +08:00
2024-07-05 17:21:27 +08:00
2024-07-26 10:21:10 +08:00
2024-08-21 14:53:01 +08:00
2024-08-21 14:53:01 +08:00
2024-03-19 10:04:56 +08:00
2024-08-19 12:18:26 +08:00
2024-07-17 08:47:20 +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/flv"
	_ "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%