Cabbage Logo
Back to Cabbage Site

Out of range and init error

Hello
I’m a user of Cabbage version 2.8.162 on linux.
I try to create a synthesizer with cabbage from a csound csd file of mine.
But I don’t understant the error I did cause of my lack of knowledge about csound/cabbage.
I don’t know why the midi note is out of range and the init error.
Is cpsmidinn opcode is not the good opcode in that case, or a rounding problem of the frequency ?
There are some division by zero warnings with the original csound file but the wav file is fine.

Error message:

rtevent: T 1.622 TT 1.622 M: 0.00000 0.00000
new MIDI alloc for instr 1:
midiKeyCps: pfield: 4 value: 1046
midiVelocity: pfield: 5 value: 92
INIT ERROR in instr 2 (opcode cpsmidinn.i) line 28: MIDI note 1046.502261 out of range
from file /home/glaude/Music/Cabbage_box/Didjim_Cabbage_ cpsmidinn.csd (1),#i0 cpsmidinn.i p4
T 1.622 - note deleted. instr 2 had 1 init errors

Cabbage file:

sr = 48000
; kr = 4800
ksmps = 10
nchnls = 2
0dbfs = 1

instr 2

iduration = p3
kfrequence = cpsmidinn(p4)
kamplitude = p5

kv1 oscil1 0, 1, iduration, 2

k1 linen kamplitude, iduration/4, iduration, iduration/2

a1 oscil k1*kv1, kfrequence, 1

outs a1, a1

endin

;causes Csound to run for about 7000 years…
f0 z
;f # date taille 10 amp1 amp2 amp3 amp4 …
f 1 0 16384 10 1

;f # date taille 7 a n1 b n2 c n3 d n4 e
f 2 0 256 7 0 64 1 128 1 192 0.5 256 0


Original files, from Csound to Cabbage.
didjm_format_tuned.csd (3.3 KB) Didjim_Cabbage_ cpsmidinn.csd (2.7 KB)

The problem is you are passing a frequency value to cpsmidinn, that’s why it’s out of range. You can either remove the cpsmidinn or change --midi-key-cps=4 to --midi-key=4.

Also, p3 is not known during a real time MIDI event. So instead of using linen, use one of the r envelope variants, linenr, madsr, exponr, etc. That will give you better control over real time envelopes. If you must have a fixed note duration you will probably need to to trigger another instrument to perform the note.