langhuihui 2b7672cdc2 memory leak
2024-06-14 17:13:02 +08:00
2024-06-05 18:05:56 +08:00
2024-06-13 17:15:30 +08:00
2024-06-14 17:13:02 +08:00
2024-06-14 17:13:02 +08:00
2024-06-05 18:05:56 +08:00
2024-04-11 20:23:23 +08:00
2024-06-05 18:05:56 +08:00
2024-06-13 17:15:30 +08:00
2024-05-11 15:11:46 +08:00
2024-04-03 17:56:20 +08:00
2024-06-05 18:05:56 +08:00
2024-06-05 18:05:56 +08:00
2024-03-19 08:41:26 +08:00
2024-06-13 17:15:30 +08:00
2024-06-14 17:13:02 +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
2024-06-14 17:13:02 +08:00
2024-03-19 10:04:56 +08:00
2024-06-14 17:13:02 +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%