furnace/extern/rtmidi
tildearrow f03f6bdb8d possibly fix compilation under macOS? 2022-06-30 03:44:16 -05:00
..
cmake add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
contrib/go/rtmidi add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
doc add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
m4 add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
msw add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
tests add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
CMakeLists.txt 3.5 2022-02-20 17:57:28 -05:00
LICENSE add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
Makefile.am add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
README.md add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
RtMidi.cpp possibly fix compilation under macOS? 2022-06-30 03:44:16 -05:00
RtMidi.h add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
autogen.sh add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
configure.ac add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
rtmidi-config.in add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
rtmidi.pc.in add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
rtmidi_c.cpp add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00
rtmidi_c.h add RtMidi for eventual MIDI support 2022-02-13 15:02:43 -05:00

README.md

RtMidi

Build Status

A set of C++ classes that provide a common API for realtime MIDI input/output across Linux (ALSA & JACK), Macintosh OS X (CoreMIDI & JACK) and Windows (Multimedia).

By Gary P. Scavone, 2003-2021.

This distribution of RtMidi contains the following:

On Unix systems, type ./configure in the top level directory, then make in the tests/ directory to compile the test programs. In Windows, open the Visual C++ workspace file located in the tests/ directory.

If you checked out the code from git, please run ./autogen.sh before ./configure.

Overview

RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific classes) that provide a common API (Application Programming Interface) for realtime MIDI input/output across Linux (ALSA, JACK), Macintosh OS X (CoreMIDI, JACK), and Windows (Multimedia Library) operating systems. RtMidi significantly simplifies the process of interacting with computer MIDI hardware and software. It was designed with the following goals:

  • object oriented C++ design
  • simple, common API across all supported platforms
  • only one header and one source file for easy inclusion in programming projects
  • MIDI device enumeration

MIDI input and output functionality are separated into two classes, RtMidiIn and RtMidiOut. Each class instance supports only a single MIDI connection. RtMidi does not provide timing functionality (i.e., output messages are sent immediately). Input messages are timestamped with delta times in seconds (via a double floating point type). MIDI data is passed to the user as raw bytes using an std::vector<unsigned char>.

Windows

In some cases, for example to use RtMidi with GS Synth, it may be necessary for your program to call CoInitializeEx and CoUninitialize on entry to and exit from the thread that uses RtMidi.

Further reading

For complete documentation on RtMidi, see the doc directory of the distribution or surf to http://www.music.mcgill.ca/~gary/rtmidi/.

The RtMidi license is similar to the MIT License, with the added feature that modifications be sent to the developer. Please see LICENSE.