• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cmake/H18-Apr-2019-2220

contrib/go/rtmidi/H18-Apr-2019-410312

doc/H03-May-2022-1,9121,384

msw/H18-Apr-2019-209206

tests/H18-Apr-2019-1,6421,213

Makefile.amH A D18-Apr-2019533 2217

README.mdH A D18-Apr-20193.7 KiB6744

RtMidi.cppH A D18-Apr-2019109.3 KiB3,4462,549

RtMidi.hH A D18-Apr-201925.1 KiB634221

autogen.shH A D18-Apr-20192.8 KiB10883

configure.acH A D03-May-20228.5 KiB239202

rtmidi-config.inH A D18-Apr-2019388 2016

rtmidi.pc.inH A D18-Apr-2019351 1311

rtmidi_c.cppH A D18-Apr-20199.7 KiB363297

rtmidi_c.hH A D18-Apr-20199 KiB24776

README.md

1# RtMidi
2
3[![Build Status](https://travis-ci.org/thestk/rtmidi.svg?branch=master)](https://travis-ci.org/thestk/rtmidi)
4
5A 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).
6
7By Gary P. Scavone, 2003-2019.
8
9This distribution of RtMidi contains the following:
10
11- `doc`:      RtMidi documentation (also online at http://www.music.mcgill.ca/~gary/rtmidi/)
12- `tests`:    example RtMidi programs
13
14On 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.
15
16If you checked out the code from git, please run `./autogen.sh` before `./configure`.
17
18## Overview
19
20RtMidi 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:
21
22  - object oriented C++ design
23  - simple, common API across all supported platforms
24  - only one header and one source file for easy inclusion in programming projects
25  - MIDI device enumeration
26
27MIDI 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>`.
28
29## Windows
30
31In 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.
32
33## Further reading
34
35For complete documentation on RtMidi, see the `doc` directory of the distribution or surf to http://www.music.mcgill.ca/~gary/rtmidi/.
36
37## Legal and ethical
38
39The RtMidi license is similar to the MIT License, with the added *feature* that modifications be sent to the developer.
40
41    RtMidi: realtime MIDI i/o C++ classes
42    Copyright (c) 2003-2019 Gary P. Scavone
43
44    Permission is hereby granted, free of charge, to any person
45    obtaining a copy of this software and associated documentation files
46    (the "Software"), to deal in the Software without restriction,
47    including without limitation the rights to use, copy, modify, merge,
48    publish, distribute, sublicense, and/or sell copies of the Software,
49    and to permit persons to whom the Software is furnished to do so,
50    subject to the following conditions:
51
52    The above copyright notice and this permission notice shall be
53    included in all copies or substantial portions of the Software.
54
55    Any person wishing to distribute modifications to the Software is
56    asked to send the modifications to the original developer so that
57    they can be incorporated into the canonical version.  This is,
58    however, not a binding provision of this license.
59
60    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
61    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
62    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
63    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
64    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
65    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
66    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
67