Skip to content
/ rtmidi Public

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

License

Notifications You must be signed in to change notification settings

thestk/rtmidi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

28b7a84 · Feb 19, 2025
Mar 9, 2022
Aug 21, 2024
Jul 8, 2023
Mar 9, 2022
Jan 7, 2024
Aug 3, 2023
Aug 11, 2021
Aug 18, 2022
Aug 20, 2022
Oct 9, 2017
Apr 14, 2022
Feb 16, 2025
Aug 3, 2023
Apr 17, 2019
Aug 3, 2023
Aug 21, 2024
Aug 3, 2023
Feb 12, 2016
Aug 3, 2023
Oct 11, 2013
Aug 16, 2021
Jul 4, 2023
Jul 4, 2023

Repository files navigation

RtMidi

Build Status Conan Center

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

By Gary P. Scavone, 2003-2023.

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/.

Legal and ethical

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

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published