[Csnd] Held notes vs. score a statements
Date | 2010-07-20 18:55 |
From | Chuckk Hubbard |
Subject | [Csnd] Held notes vs. score a statements |
This score plays a held note, and then turns off the instrument with a second note. If you comment out the a statement in the score, the score skips past both but leaves the held note hanging until the end of the performance. Seems like a mistake to me. -Chuckk |
Date | 2010-07-20 19:30 |
From | Aaron Krister Johnson |
Subject | [Csnd] Re: Held notes vs. score a statements |
Chucck, What version are you using....I've noticed some sorting issue in the CVS that aren't there in 5.12.1 release version. Please say that you're using CVS! I'd hate to have to revert to 5.10! Or 4.23!!!! LOL AKJ On Tue, Jul 20, 2010 at 12:55 PM, Chuckk Hubbard <badmuthahubbard@gmail.com> wrote: This score plays a held note, and then turns off the instrument with a -- Best, Aaron Krister Johnson http://www.akjmusic.com http://www.untwelve.org |
Date | 2010-07-20 20:58 |
From | Victor Lazzarini |
Subject | [Csnd] Re: Held notes vs. score a statements |
I think in this case, a-statements are being processed after the i- statements. Maybe that is the expected order of evaluation? If you move the start of the held .000001 beats ahead, it will not sound. If you do a 0 -1 5 The note will also not sound. I don't think this one can count as a bug, but a note on the manual might be a good idea. Victor On 20 Jul 2010, at 18:55, Chuckk Hubbard wrote: > This score plays a held note, and then turns off the instrument with a > second note. If you comment out the a statement in the score, the > score skips past both but leaves the held note hanging until the end > of the performance. Seems like a mistake to me. > > -Chuckk > > -- > http://www.badmuthahubbard.com > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body > "unsubscribe csound" > > |
Date | 2010-07-20 21:12 |
From | Chuckk Hubbard |
Subject | [Csnd] Re: Re: Held notes vs. score a statements |
Sorry Arron, forgot to mention, this is 5.12, and yes, I think it's from CVS. -Chuckk On Tue, Jul 20, 2010 at 9:30 PM, Aaron Krister Johnson |
Date | 2010-07-21 11:00 |
From | Chuckk Hubbard |
Subject | [Csnd] Re: Re: Held notes vs. score a statements |
Unfortunately, using a 0 -1 5 doesn't work the same using the API through Python, at least with this CVS version I have. It appears to jump to the end of the score. I'll see if I can find a way to make an example. -Chuckk On Tue, Jul 20, 2010 at 10:58 PM, Victor Lazzarini |
Date | 2010-07-21 16:24 |
From | Victor Lazzarini |
Subject | [Csnd] Re: Re: Re: Held notes vs. score a statements |
I think advance statements probably only work on a sorted score, not in RT events. Maybe this API call would do the trick? /** * Csound score events prior to the specified time are not performed, and * performance begins immediately at the specified time (real-time events * will continue to be performed as they are received). * Can be used by external software, such as a VST host, * to begin score performance midway through a Csound score, * for example to repeat a loop in a sequencer, or to synchronize * other events with the Csound score. */ PUBLIC void csoundSetScoreOffsetSeconds(CSOUND *, MYFLT time); Victor On 21 Jul 2010, at 11:00, Chuckk Hubbard wrote: > Unfortunately, using > a 0 -1 5 > doesn't work the same using the API through Python, at least with this > CVS version I have. It appears to jump to the end of the score. I'll > see if I can find a way to make an example. > -Chuckk > > On Tue, Jul 20, 2010 at 10:58 PM, Victor Lazzarini > |