百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
M

midimonster

> 编程语言
开源

多协议控制和转换软件 (ArtNet、MIDI、OSC、sACN 等)

602 stars0 点赞0 次浏览
访问官网GitHub

工具介绍

多协议控制和转换软件 (ArtNet、MIDI、OSC、sACN 等)

The MIDIMonster

Named for its scary math, the MIDIMonster is a universal control and translation tool for multi-channel absolute-value-based control and/or bus protocols.

Currently, the MIDIMonster supports the following protocols:

Protocol / Interface Operating Systems Notes Backends
MIDI Linux, Windows, OSX Linux: via ALSA/JACK, OSX: via JACK midi, winmidi, jack
ArtNet Linux, Windows, OSX Version 4 artnet
Streaming ACN (sACN / E1.31) Linux, Windows, OSX sacn
OpenSoundControl (OSC) Linux, Windows, OSX osc
MQTT Linux, Windows, OSX Protocol versions 5 and 3.1.1 mqtt
RTP-MIDI Linux, Windows, OSX AppleMIDI sessions supported rtpmidi
OpenPixelControl Linux, Windows, OSX 8 Bit & 16 Bit modes openpixelcontrol
Input devices (Mouse, Keyboard, etc) Linux, Windows evdev, wininput
Open Lighting Architecture Linux, OSX ola
MA Lighting Web Remote Linux, Windows, OSX GrandMA2 and dot2 (incl. OnPC) maweb
JACK/LV2 Control Voltage (CV) Linux, OSX jack
VISCA Linux, Windows, OSX PTZ Camera control over TCP/UDP visca
Lua Scripting Linux, Windows, OSX lua
Python Scripting Linux, OSX python
Loopback Linux, Windows, OSX loopback

With these features, the MIDIMonster allows users to control any channel on any of these protocols, and translate any channel on one protocol into channel(s) on any other (or the same) supported protocol, for example to:

  • Translate MIDI Control Changes into MIDI Notes (Example configuration)
  • Translate MIDI Notes into ArtNet or sACN (Example configuration)
  • Translate OSC messages into MIDI (Example configuration)
  • Dynamically generate, route and modify events using the Lua programming language (Example configuration and Script) to create your own lighting controller or run effects on TouchOSC (Flying faders demo configuration and script)
  • Use an OSC app as a simple lighting controller via ArtNet or sACN
  • Visualize ArtNet data using OSC tools
  • Control lighting fixtures or DAWs using gamepad controllers, trackballs, etc (Example configuration)
  • Connect a device speaking RTP MIDI (for example, an iPad) to your computer or lighting console (Example configuration)
  • Play games, type, or control your mouse using MIDI controllers (Example configuration)

If you encounter a bug or suspect a problem with a protocol implementation, please open an Issue or get in touch with us via IRC on Hackint in #midimonster. We are happy to hear from you!

Table of Contents

  • Usage
  • Configuration
  • Backend documentation
  • Installation
    • Using the installer
    • Building from source
      • Building for Linux/OSX
      • Building for Packaging
      • Building for Windows
  • Development

Usage

The MIDImonster takes as it's first argument the name of an optional configuration file to use (monster.cfg is used as default if none is specified). The configuration file syntax is explained in the next section.

The current MIDIMonster version can be queried by passing -v as command-line argument.

Configuration

Each protocol supported by MIDIMonster is implemented by a backend, which takes global protocol-specific options and provides instances, which can be configured further.

The configuration is stored in a file with a format very similar to the common INI file format. A section is started by a header in [] braces, followed by lines of the form option = value.

Lines starting with a semicolon are treated as comments and ignored. Inline comments are not currently supported.

Configuration files may be included recursively in other configuration files using the syntax [include ]. This will read the referenced configuration file as if it were inserted at that point.

Example configuration files may be found in configs/.

Backend and instance configuration

A configuration section may either be a backend configuration section, started by [backend ], an instance configuration section, started by [ ] or a mapping section started by [map].

Backends document their global options in their backend documentation. Some backends may not require global configuration, in which case the configuration section for that particular backend can be omitted.

To make an instance available for mapping channels, it requires at least the [ ] configuration stanza. Most backends require additional configuration for their instances.

Backend and instance configuration options can also be overridden via command line arguments using the syntax -b .= for backend options and -i .= for instance options. These overrides are applied when the backend/instance is first mentioned in the configuration file.

Channel mapping

The [map] section consists of lines of channel-to-channel assignments, reading like

instance.channel-a  instance.channel-b
instance.channel-c <> instance.channel-d

The first line above maps any event originating from instance.channel-b to be output on instance.channel-a (right-to-left mapping).

The second line makes that mapping a bi-directional mapping, so both of those channels output eachothers events.

The last line is a shorter way to create a bi-directional mapping.

You can map input channels to as many outputs as you like. This will deliver incoming events for each mapped output. You can also map multiple input channels to one common output channel. This will forward all events on the mapped inputs to the output channel (experienced show-control technicians call this a "latest takes precedence" bus).

Multi-channel mapping

To make mapping large contiguous sets of channels easier, channel names may contain certain types of expressions specifying multiple channels at once.

Expressions of the form {..}, with start and end being positive integers, expand to a range of channels, with the expression replaced by the incrementing or decrementing value.

Expressions of the form {value1,value2,value3} (with any number of values separated by commas) are replaced with each of the specified values in sequence.

Multiple such expressions may be used in one channel specification, with the rightmost expression being evaluated first.

Both sides of a multi-channel assignment need to have the same number of channels, or one side must have exactly one channel.

Example multi-channel mapping:

instance-a.channel{1..5} > instance-b.{a,b,c,d,e}

Backend documentation

Every backend includes specific documentation, including the global and instance configuration options, channel specification syntax and any known problems or other special information. These documentation files are located in the backends/ directory.

  • midi backend documentation
  • jack backend documentation
  • winmidi backend documentation
  • artnet backend documentation
  • sacn backend documentation
  • rtpmidi backend documentation
  • evdev backend documentation
  • loopback backend documentation
  • ola backend documentation
  • osc backend documentation
  • mqtt backend documentation
  • openpixelcontrol backend documentation
  • lua backend documentation
  • python backend documentation
  • maweb backend documentation
  • wininput backend documentation

Installation

This section will explain how to build and install the MIDIMonster. Development is mainly done on Linux, but builds for OSX and Windows are possible.

Binary builds for all supported systems are available for download on the Release page.

Using the installer

The easiest way to install MIDIMonster and its dependencies on a Linux system is the installer script.

The following commands download the installer, make it executable and finally, start it:

wget https://raw.githubusercontent.com/cbdevnet/midimonster/master/installer.sh ./
chmod +x ./installer.sh
./installer.sh

The installer can also be used for automating installations or upgrades by specifying additional command line arguments. To see a list of valid arguments, run the installer with the --help argument.

The installer script can also update MIDIMonster to the latest version automatically, using a configuration file generated during the installation. To do so, run midimonster-updater as root on your system after using the installer.

If you prefer to install a Debian package you can download the .deb file from our Release page. To install the package, run the following command as the root user:

dpkg -i .deb

Building from source

To build the MIDIMonster directly from the sources, you'll need some libraries that provide support for the protocols to translate. When building from source, you can also choose to exclude backends (for example, if you don't need them or don't want to install their prerequisites).

  • libasound2-dev (for the ALSA MIDI backend)
  • libevdev-dev (for the evdev backend)
  • liblua5.3-dev (for the lua backend)
  • libola-dev (for the optional OLA backend)
  • libjack-jackd2-dev (for the JACK backend)
  • libssl-dev (for the MA Web Remote backend)
  • python3-dev (for the Python backend)
  • pkg-config (as some projects and systems like to spread their files around)
  • A C compiler
  • GNUmake

To build for Windows, the package mingw-w64 provides a cross-compiler that can be used to build a subset of the backends as well as the core.

Building for Linux/OSX

For Linux and OSX, just running make in the source directory should do the trick.

Some backends have been marked as optional as they require rather large additional software to be installed, for example the ola backend. To create a build including these, run make full.

To install a source build with make install, please familiarize yourself with the build parameters as specified in the next section.

Backends may also be built selectively by running make in the backends/ directory, for example

make jack.so

Building for Packaging

The build process accepts the following parameters, either from the environment or as arguments to the make invocation:

Target Parameter Default value Description
build targets DEFAULT_CFG monster.cfg

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

Cart-netartnetdmx512lighting

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言