๐Ÿš€ Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More โ†’
Socket
Book a DemoInstallSign in
Socket

m7s.live/v5

Package Overview
Dependencies
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

m7s.live/v5

Go Modules
Version
v5.1.6
Version published
Created
Source

Contributors Forks Stargazers Issues MIT License


Logo

Monibuca v5

A highly scalable high-performance streaming server development framework developed purely in Go
ไธญๆ–‡ๆ–‡ๆกฃ ยท Explore the docs ยป

Report Bug ยท Request Feature

Table of Contents

About

Monibuca is a powerful streaming server framework written entirely in Go. It's designed to be:

  • ๐Ÿš€ High Performance - Lock-free design, partial manual memory management, multi-core computing

  • โšก Low Latency - Zero-wait forwarding, sub-second latency across the entire chain

  • ๐Ÿ“ฆ Modular - Load on demand, unlimited extensibility

  • ๐Ÿ”ง Flexible - Highly configurable to meet various streaming scenarios

  • ๐Ÿ’ช Scalable - Supports distributed deployment, easily handles large-scale scenarios

  • ๐Ÿ” Debug Friendly - Built-in debug plugin, real-time performance monitoring and analysis

  • ๐ŸŽฅ Media Processing - Supports screenshot, transcoding, SEI data processing

  • ๐Ÿ”„ Cluster Capability - Built-in cascade and room management

  • ๐ŸŽฎ Preview Features - Supports video preview, multi-screen preview, custom screen layouts

  • ๐Ÿ” Security - Provides encrypted transmission and stream authentication

  • ๐Ÿ“Š Performance Monitoring - Supports stress testing and performance metrics collection (integrated in test plugin)

  • ๐Ÿ“ Log Management - Log rotation, auto cleanup, custom extensions

  • ๐ŸŽฌ Recording & Playback - Supports MP4, HLS, FLV formats, speed control, seeking, pause

  • โฑ๏ธ Dynamic Time-Shift - Dynamic cache design, supports live time-shift playback

  • ๐ŸŒ Remote Call - Supports gRPC interface for cross-language integration

  • ๐Ÿท๏ธ Stream Alias - Supports dynamic stream alias, flexible multi-stream management

  • ๐Ÿค– AI Capabilities - Integrated inference engine, ONNX model support, custom pre/post processing

  • ๐Ÿช WebHook - Subscribe to stream lifecycle events for business system integration

  • ๐Ÿ”’ Private Protocol - Supports custom private protocols for special business needs

  • ๐Ÿ”„ Supported Protocols: RTMP, RTSP, HTTP-FLV, WS-FLV, HLS, WebRTC, GB28181, ONVIF, SRT

(back to top)

Getting Started

Prerequisites

  • Go 1.23 or higher
  • Basic understanding of streaming protocols

Run with Default Configuration

cd example/default
go run -tags sqlite main.go

Web UI

Place the admin.zip file (do not unzip) in the same directory as your configuration file.

Then visit http://localhost:8080 to access the UI.

(back to top)

Examples

For more examples, please check out the example documentation.

(back to top)

Build Tags

The following build tags can be used to customize your build:

Build TagDescription
disable_rmDisables the memory pool
sqliteEnables the sqlite DB
sqliteCGOEnables the sqlite cgo version DB
mysqlEnables the mysql DB
postgresEnables the postgres DB
duckdbEnables the duckdb DB
taskpanicThrows panic, for testing
fasthttpEnables the fasthttp server instead of net/http
enable_buddyEnables the buddy memory pre-allocation

(back to top)

Monitoring

Monibuca supports Prometheus monitoring out of the box. Add the following to your Prometheus configuration:

scrape_configs:
  - job_name: "monibuca"
    metrics_path: "/api/metrics"
    static_configs:
      - targets: ["localhost:8080"]

(back to top)

Plugin Development

Monibuca's functionality can be extended through plugins. For information on creating plugins, see the plugin guide.

(back to top)

Architecture

For detailed architecture design documentation, please refer to the Architecture Documentation.

(back to top)

Third-party Plugins

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  • Fork the Project
  • Create your Feature Branch (git checkout -b feature/AmazingFeature)
  • Commit your Changes (git commit -m 'Add some AmazingFeature')
  • Push to the Branch (git push origin feature/AmazingFeature)
  • Open a Pull Request

(back to top)

License

Distributed under the AGPL License. See LICENSE for more information.

(back to top)

Contact

monibuca - @m7server - service@monibuca.com

Project Link: https://github.com/langhuihui/monibuca

(back to top)

FAQs

Package last updated on 26 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts