[Csnd] problem with qjack and csound
Date | 2013-02-23 14:45 |
From | Stefan Thomas |
Subject | [Csnd] problem with qjack and csound |
Dear community, I get the following error message, when I run the below quoted code: error: -+rtmidi='portmidi': unknown moduleI thought with the Ma-flag csound listens to all midi devices. Does someone know, which flags I should use? Here is my dummy-code: <CsoundSynthesizer> <CsOptions> -odevaudio -Ma -m0d -+rtaudio=jack -o dac -b512 -B 1024 </CsOptions> ; ============================================== <CsInstruments> sr = 48000 ksmps = 100 nchnls = 2 0dbfs = 1 gisine ftgen 0,0,2^10, 10, 1 instr 1 iamp ampmidi 0.2 icps cpsmidi asig poscil iamp, icps, gisine outs asig, asig endin </CsInstruments> ; ============================================== <CsScore> f 0 10 </CsScore> </CsoundSynthesizer> |