[Cs-dev] assignment to p3
Date | 2010-02-24 19:34 |
From | Victor Lazzarini |
Subject | [Cs-dev] assignment to p3 |
Should this be allowed? I am not sure it's documented, but it seems possible to set a fixed duration in an instrument by assigning to p3. Victor ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-02-24 19:42 |
From | Steven Yi |
Subject | Re: [Cs-dev] assignment to p3 |
I would say yes, only because I've used it for years. :) It should only be settable at init-time so I think it is alright. I guess even just because of legacy purposes we will need to support it. On Wed, Feb 24, 2010 at 2:34 PM, Victor Lazzarini |
Date | 2010-02-24 20:13 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] assignment to p3 |
Ok; Is it documented? I have never come across it. Victor On 24 Feb 2010, at 19:42, Steven Yi wrote: > I would say yes, only because I've used it for years. :) It should > only be settable at init-time so I think it is alright. I guess even > just because of legacy purposes we will need to support it. > > On Wed, Feb 24, 2010 at 2:34 PM, Victor Lazzarini > |
Date | 2010-02-24 20:16 |
From | jpff@cs.bath.ac.uk |
Subject | Re: [Cs-dev] assignment to p3 |
> Should this be allowed? Yes; certainly. Many people use it and it is actually very useful > > I am not sure it's documented, but it seems possible to set a fixed > duration in an instrument by assigning to p3. > > > Victor > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel > > > ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-02-24 20:30 |
From | Richard Dobson |
Subject | Re: [Cs-dev] assignment to p3 |
And I remember it as one of the defined facilities in Csound from the beginning; it is far from being an "emergent feature". Richard Dobson On 24/02/2010 20:16, jpff@cs.bath.ac.uk wrote: >> Should this be allowed? > > > Yes; certainly. Many people use it and it is actually very useful >> >> I am not sure it's documented, but it seems possible to set a fixed >> duration in an instrument by assigning to p3. >> >> ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-02-24 20:51 |
From | Michael Gogins |
Subject | Re: [Cs-dev] assignment to p3 |
I depend on this feature and use it constantly. Typically, I generate notes algorithmically. They can be of any duration from very short to very long. I don't want notes that are too short to render the attack and release so I do something like this: iattack = 0.02 irelease = 0.04 isustain = p3 p3 = iattack + isustain + irelease Regards, Mike On Wed, Feb 24, 2010 at 2:34 PM, Victor Lazzarini |
Date | 2010-02-24 21:06 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] assignment to p3 |
Well, I think this should be documented. I have not seen it anywhere, but I might be wrong. Victor On 24 Feb 2010, at 20:51, Michael Gogins wrote: > I depend on this feature and use it constantly. > > Typically, I generate notes algorithmically. They can be of any > duration from very short to very long. I don't want notes that are too > short to render the attack and release so I do something like this: > > iattack = 0.02 > irelease = 0.04 > isustain = p3 > p3 = iattack + isustain + irelease > > Regards, > Mike > > On Wed, Feb 24, 2010 at 2:34 PM, Victor Lazzarini > |