[Csnd] turn off Csound from orchestra
Date | 2012-08-18 19:43 |
From | Thomas Hass |
Subject | [Csnd] turn off Csound from orchestra |
Is there a trick to turn off Csound from the orchestra as soon as a certain instrument completes? For instance: kcount timeinsts if (kcount >= p3) then turn off Csound here... endif Thanks, Thomas |
Date | 2012-08-18 19:46 |
From | Steven Yi |
Subject | Re: [Csnd] turn off Csound from orchestra |
Maybe send a score event "e"? On Aug 18, 2012 11:44 AM, "Thomas Hass" <thass@berklee.edu> wrote:
Is there a trick to turn off Csound from the orchestra as soon as a certain instrument completes? |
Date | 2012-08-18 19:49 |
From | Justin Smith |
Subject | Re: [Csnd] turn off Csound from orchestra |
event "e", 0, p3, 0 No need for the if statement or timeinsts, it will end the score after the end of the note. On Sat, Aug 18, 2012 at 11:43 AM, Thomas Hass |
Date | 2012-08-18 19:50 |
From | Thomas Hass |
Subject | Re: [Csnd] turn off Csound from orchestra |
Great! The "e" score event did the trick. Thanks, Thomas
On Sat, Aug 18, 2012 at 2:49 PM, Justin Smith <noisesmith@gmail.com> wrote: event "e", 0, p3, 0 |