RtMidi.Core 1.0.53

dotnet add package RtMidi.Core --version 1.0.53
NuGet\Install-Package RtMidi.Core -Version 1.0.53
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RtMidi.Core" Version="1.0.53" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RtMidi.Core --version 1.0.53
#r "nuget: RtMidi.Core, 1.0.53"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RtMidi.Core as a Cake Addin
#addin nuget:?package=RtMidi.Core&version=1.0.53

// Install RtMidi.Core as a Cake Tool
#tool nuget:?package=RtMidi.Core&version=1.0.53

RtMidi.Core

icon

Build status NuGet

MIDI support on both Windows (64-bit or 32-bit) and Mac OS X (64-bit) for .Net Standard 2.0 with support for both input and output midi devices, and support the following midi messages:

  • Channel Pressure
  • Control Change
  • Note On / Off
  • Pitch Bend
  • Polyphonic Key Pressure
  • Program Change
  • Non-Registered Parameter Number (NRPN) (used to send/receive 14-bit parameter and value)
  • System Exclusive (SysEx)

See changelog for version history.

Example

// List all available MIDI API's
foreach (var api in MidiDeviceManager.Default.GetAvailableMidiApis())
    Console.WriteLine($"Available API: {api}");

// Listen to all available midi devices
void ControlChangeHandler(IMidiInputDevice sender, in ControlChangeMessage msg)
{   
    Console.WriteLine($"[{sender.Name}] ControlChange: Channel:{msg.Channel} Control:{msg.Control} Value:{msg.Value}");
} 

var devices = new List<IMidiInputDevice>();
try
{
    foreach (var inputDeviceInfo in MidiDeviceManager.Default.InputDevices)
    {
        Console.WriteLine($"Opening {inputDeviceInfo.Name}");

        var inputDevice = inputDeviceInfo.CreateDevice();
        devices.Add(inputDevice);
        
        inputDevice.ControlChange += ControlChangeHandler;
        inputDevice.Open();
    }

    Console.WriteLine("Press any key to stop...");
    Console.ReadKey();
    
}
finally
{
    foreach (var device in devices)
    {
        device.ControlChange -= ControlChangeHandler;
        device.Dispose();
    }
}

RtMidi Version

We are using a fork off rtmidi master branch with a few changes (you can see a diff here between our fork and official repository) to make it possible to build on the platforms we are interested in and with changes to better support .Net P/Invoke.

You can find our fork at micdah/rtmidi.

Acknowledgements

Special thanks to the contributors (in alphabetical order):

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

NuGet packages (1)

Showing the top 1 NuGet packages that depend on RtMidi.Core:

Package Downloads
OctoPatch.Plugin.Midi

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on RtMidi.Core:

Repository Stars
BarRaider/streamdeck-voicemeeter
VoiceMeeter integration for Stream Deck
Version Downloads Last updated
1.0.53 341 9/5/2023
1.0.53-beta-1 68 9/4/2023
1.0.52 82 9/4/2023
1.0.52-beta-3 63 9/4/2023
1.0.52-beta-1 51 9/4/2023
1.0.51 1,577 10/27/2020
1.0.50 1,474 2/11/2019
1.0.49 841 9/11/2018
1.0.48.1 740 8/31/2018
1.0.48 786 8/22/2018
1.0.47 793 8/7/2018
1.0.46 998 4/30/2018
1.0.45 955 4/30/2018
1.0.44 900 4/24/2018
1.0.42 1,007 1/13/2018
1.0.41 931 1/13/2018
1.0.40 904 1/13/2018
1.0.39 962 1/12/2018
1.0.38 946 1/12/2018
1.0.37 967 1/12/2018
1.0.36 994 12/27/2017
1.0.35 956 12/26/2017
1.0.34 966 12/26/2017

Initial release