[Csnd-dev] csoundGetModule and rtmidi jack
Date | 2017-03-08 16:50 |
From | Tarmo Johannes |
Subject | [Csnd-dev] csoundGetModule and rtmidi jack |
Hi, I realized CsoundQt does offer rtmidi=jack as one of the options for realtime midi and and was going to implement it.--- CSOUND *csound = csoundCreate(NULL); char *name, *type; int n = 0; rtAudioNames << "null"; n = 0; while(!csoundGetModule(csound, n++, &name, &type)) { // miks ei tule siin jack? if (strcmp(type, "midi") == 0) { rtMidiNames << name; printf("MIDI Module %d: %s (%s) \n", n, name, type); } } ---- MIDI Module 2: alsaraw (midi) MIDI Module 3: alsaseq (midi) MIDI Module 4: devfile (midi) ---- |