Does massign 0,0 interfere with negative p3 notes?
Date | 2015-05-17 01:08 |
From | Forrest Curo |
Subject | Does massign 0,0 interfere with negative p3 notes? |
Attachments | None None |
I was having trouble generating an instance with a negative p3 from an instrument using midinn to trigger those notes. This instrument generates an instance with a negative p3 from its own p-fields:instr 4; kp = p4 kvel = p5 kquot = p6 kmod = p7 event "i", kp, 0, -60, kvel, kquot, kmod endin event "i", 4, .01, .001, kp, kvel, kquot, kmod If it's | v event "i", 4, .001, .001, kp, kvel, kquot, kmod I get silence.? |
Date | 2015-05-17 10:07 |
From | Victor Lazzarini |
Subject | Re: Does massign 0,0 interfere with negative p3 notes? |
Try setting to zero each channel with massign: icnt init 1 until icnt > 16 do massign icnt,0 icnt +=1 od Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy Maynooth University Ireland > On 17 May 2015, at 01:08, Forrest Curo |
Date | 2015-05-17 14:32 |
From | Forrest Curo |
Subject | Re: Does massign 0,0 interfere with negative p3 notes? |
Attachments | None None |
That works directly, thanks much! But the logic of the instrument is essentially unchanged (except I kept simplifying frantically) and I'm quite curious what was eating the notes?!On Sun, May 17, 2015 at 2:07 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote: Try setting to zero each channel with massign: |
Date | 2015-05-17 14:52 |
From | Victor Lazzarini |
Subject | Re: Does massign 0,0 interfere with negative p3 notes? |
Attachments | None None |
Maybe some noteoff messages were directed to the instrument. The code supresses these now. Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy Maynooth University Ireland
|