You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 18, 2023. It is now read-only.
is MIDI-in working with JackSharp? I'm trying to just receive MIDI
from my controller. I receive events, but they don't contain any data.
Here is what I do:
foreach (MidiEventCollection<MidiInEvent> eventCollection in items.MidiIn)
{
foreach (MidiInEvent midiEvent in eventCollection)
{
if (midiEvent.MidiData.Length > 0)
{
Console.WriteLine ("Hurray!");
}
Console.WriteLine( BitConverter.ToString (midiEvent.MidiData) );
}
}
midiEvent.MidiData is always empty (and 0 bytes long).