GithubHelp home page GithubHelp logo

polygon / rtpmidid Goto Github PK

View Code? Open in Web Editor NEW

This project forked from davidmoreno/rtpmidid

0.0 1.0 0.0 674 KB

RTP MIDI (AppleMIDI) daemon for Linux

License: Other

C++ 95.49% Python 0.60% Makefile 1.68% CMake 1.89% Nix 0.34%

rtpmidid's Introduction

RTP MIDI User Space Driver Daemon for Linux

Real Time Protocol Musical Instrument Digital Interface Daemon

Alpha software. Use at your own risk.

rtpmidid allows you to share ALSA sequencer devices on the network using RTP MIDI, and import other network shared RTP MIDI devices.

rtpmidid is an user daemon, and when a RTP MIDI device is announced using mDNS (also known as Zeroconf, Avahi, and multicast DNS) it exposes this ALSA sequencer port.

librtpmidid

For information about librtpmidid and how to use it, read README.librtpmidid.md.

Other implementations

There is many hardware with RTP MIDI support, normally controllers, but for example Behringer DeepMind12 Synthesizer has support over Wifi.

Linux

  • raveloxmidi - Intended to be used directly with hardware devices or emulate midi over FIFO.
  • rtpmidi from McLaren Labs. It is a feature complete, GUI driven, Comercial implementation. Very similar to Tobias Erichsen's rtpmidi.

MacOS

On MacOS there is support included in the OS.

iPad

To test I used MIDI Network and MIDI Wrench. The first to manage connections, the second to test.

I was able to communicate exporting at rtpmidid side connecting my gadget to the Network port. Then use the MIDI Network on the iPad to make the connection.

Windows

Mobile / Tablet

There are also many Apple iPad / iPhone and Android programs with rtp midi support. I will try to list them as I find them:

Android

How to use rtpmidid

recomended use is via debian packages, at https://github.com/davidmoreno/rtpmidid/releases

rtpmidid provides two modes of operation, one focused on importing, another on exporting.

Real Time Protocol Music Instrument Digital Interface Daemon - 20.04.5
(C) 2019-2021 David Moreno Montero <[email protected]>
Share ALSA sequencer MIDI ports using rtpmidi, and viceversa.

rtpmidi allows to use rtpmidi protocol to communicate with MIDI equipement
using network equipiment. Recomended use is via ethernet cabling as with WiFi
there is a lot more latency. Internet use has not been tested, but may also
deliver high latency.

Options:
  --version           Show version
  --help              Show this help
  --name <name>       Forces a rtpmidi name
  --host <address>    My default IP. Needed to answer mDNS. Normally guessed but may be attached to another ip.
  --port <port>       Opens local port as server. Default 5004. Can set several.
  --connect <address> Connects the given address. This is default, no need for --connect
  --control <path>    Creates a control socket. Check CONTROL.md. Default `/var/run/rtpmidid/control.sock`
  address for connect:
  hostname            Connects to hostname:5004 port using rtpmidi
  hostname:port       Connects to a hostname on a given port
  name:hostname:port  Connects to a hostname on a given port and forces a name for alsaseq

Importing

For each found mDNS item, and connections to port 5004 (by default), it creates alsa seq ports which provide the events on those endpoints.

For mDNS discovered endpoints, the connection is delayed until the alsa seq connection.

Also it can connect to other endpoints by ip and port. It's possible to create new connection via command line with rtpmidid-cli connect NAME IP PORT. There are variations to connect that skip the name and port.

Exporting

To export a local alsa sequencer port, connect it to the "Network" port.

It will create the server, announce the mDNS service so other endpoints know it exist, and accept connections.

MIDI data is rerouted to the proper endpoint by checking the source port.

When connecting the Network port to an input, it merges all the midi events from all exported services. Normally this is not the desired behaviour, so it is recomended to export output ports, not input ones. This will be fixed in the future.

Install and Build

There are Debian packages at https://github.com/davidmoreno/rtpmidid/releases . They are available for Ubuntu 18.04 x64 and Raspbian 32bits, but may work also on other systems.

To easy build there is a simple makefile, which can be invoked to compile with make build. Use make or make help to get help on commands.

Its possible to create a debian / ubuntu package with make deb

Requires C++17 (Ubuntu 18.04+), and libfmt-dev, libasound2-dev, libavahi-client-dev.

Testing and bug reporting

If you find any bug, please report it to https://github.com/davidmoreno/rtpmidid/issues/

It is very usefull if you can accompany it with the resulting capture file from executing make capture.

make capture is tuned to capture the network packets at ports 10000 and 10001, but can be tuned to other ports with make capture PORT=5004.

The port 10000 is the one used for developing. To run a development version of the rtpmidid server, execute make run. There are more options at make help.

This captures packets for connections TO rtpmidid, not connecitons FROM rtpmidid. For those connecitons another port may need to be set.

Goals

  • Daemon, no need for UI
  • ALSA MIDI -- Inputs as ALSA MIDI inputs, outputs a ALSA MIDI outputs
  • Autoconfigurable for mDNS Endpoints

Roadmap: Features and status

Development status / plan:

  • mDNS client/server
  • Async framework (epoll with callbacks based code)
  • mDNS publish and learn when there are rtpmidi running on the network
  • Create the alsa ports for found rtpmidi servers in the network
  • When there is any connection to the alsa sequencer port rtpmidid creates the rtpmidi connection
  • Any message from alsa seq is sent to the MIDI rtp extreme
  • Any message from rtpmidi is replayed on the alsa seq
  • Can export local ports, with user deciding which ones to export.
  • Server mode at a known port, when remote side request connections, create the alsa seq virtual port for that connection and connect both ports.
  • Allow several connections on the server port. Each its own aseq port.
  • Send all MIDI events to rtpmidi
  • Receive all MIDI events from rtpmidi
  • Periodic check all peers are still on, no new peers
  • Remove ports when peer dissapears
  • Client send CK every minute
  • Can be controlled via Unix socket, but not required.
  • Jack MIDI support instead of ALSA seq
  • Use rtp midi timestamps
  • Journal support for note off
  • Journal support for CC
  • Journal support for Program Change
  • Journal support for Pitch Bend

Currently there is no journal. This is normally not a problem on local networks, as the thernet protocol already has packet error and detection, but packets may arrive out of order. Anyway its not production ready just for this missing feature.

CLI Control

There is a basic CLI that used the Unix socket control.

Use as:

cli/rtpmidid-cli.py help

License

RtpMidid is GPLv3 licensed. This basically means that you are free to use, modify and share it, given that you share your modifications with your users.

This includes embeded software uses (anti tivoization clause of the GPLv3).

The librtpmidid library is LGPL 2.1 license, so it can be embedded freely on free and commercial software.

If you think the license does not fit your use case, please contact me at [email protected] for alternative licensing options. I'm a freelancer looking for new projects.

Resources

rtpmidid's People

Contributors

davidmoreno avatar folkertvanheusden avatar puck avatar thetechnobear avatar videomem avatar kant avatar dvinc avatar arteme avatar dangowrt avatar abrahamwisman avatar agraef avatar mcginty avatar alex-calamar avatar polygon avatar re-vax avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.