[Csnd] Repeated notes and sustain?
| Date | 2019-04-06 04:29 |
| From | Pete Goodeve |
| Subject | [Csnd] Repeated notes and sustain? |
| Attachments | None |
| Date | 2019-04-06 05:03 |
| From | Ed Cashin |
| Subject | Re: [Csnd] Repeated notes and sustain? |
Ian McCurdy’s examples include MIDI ones that do limiting of polyphony and note duplication that you can draw techniques from. I recently posted a synth pad .csd here that used the polyphony limiting example. On Fri, Apr 5, 2019 at 8:29 PM Pete Goodeve <pete.goodeve@computer.org> wrote: Hi, Ed Cashin <ecashin@noserose.net> |
| Date | 2019-04-06 06:35 |
| From | pete.goodeve@COMPUTER.ORG |
| Subject | Re: [Csnd] Repeated notes and sustain? |
| Attachments | None |
| Date | 2019-04-06 12:37 |
| From | Anders Genell |
| Subject | Re: [Csnd] Repeated notes and sustain? |
Without having tested it, couldn’t you put midi note value in a global variable, and check if the next midi note is of the same value and in such case replace it with the new?
Just a thought...
Regards,
Anders
> 6 apr. 2019 kl. 07:35 skrev pete.goodeve@computer.org:
>
>> On Fri, Apr 05, 2019 at 10:03:25PM -0600, Ed Cashin wrote:
>> Ian McCurdy’s examples include MIDI ones that do limiting of polyphony and
>> note duplication that you can draw techniques from.
>>
>> I recently posted a synth pad .csd here that used the polyphony limiting
>> example.
>>
>> http://iainmccurdy.org/csound.html
>>
> Thanks, but that's not really applicable to my situation. I've done that sort
> of thing before too. His polyphony limiting applies to *all* sounding notes.
> In my case, it's only a previously sounding *same* note that has to be silenced.
>
> As I said, I hacked a solution anyway, but it surprises me there isn't some more
> 'built-in' solution.
>
> -- Pete --
>
> Csound mailing list
> Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
> Send bugs reports to
> https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here |
| Date | 2019-04-06 17:23 |
| From | john |
| Subject | Re: [Csnd] Repeated notes and sustain? |
Another off-the-wall idea. Create a number for each note value (eg the
pitch) and declare yoiur instrunmenr like
instr 60 51 62 63 64 65 66 67 68 9
.....
endin
then in scheduling the new instance kill any previous instance. in a
dispatchinf instrument.
Or have I misunnderstood the question?
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here |
| Date | 2019-04-06 17:37 |
| From | Oeyvind Brandtsegg |
| Subject | Re: [Csnd] Repeated notes and sustain? |
You can also use fractional instr numbers similarly. To trigger instrument 20, you would do : inotenum notnum insnum = 20+(inotenum*0.01) lør. 6. apr. 2019, 6:23 p.m. skrev john <jpff@codemist.co.uk>: Another off-the-wall idea. Create a number for each note value (eg the |
| Date | 2019-04-06 17:42 |
| From | Anders Genell |
| Subject | Re: [Csnd] Repeated notes and sustain? |
That’s very clever!! I suppose fractional instruments monophonic by nature? Then this is much better than my idea that would have a lot of conditionals... Regards, Anders
|
| Date | 2019-04-06 18:21 |
| From | Oeyvind Brandtsegg |
| Subject | Re: [Csnd] Repeated notes and sustain? |
I think they are not monophonic by nature, but it might be possible to use tied notes to just prolong an already running instance. lør. 6. apr. 2019, 6:42 p.m. skrev Anders Genell <anders.genell@gmail.com>:
|
| Date | 2019-04-06 22:16 |
| From | Pete Goodeve |
| Subject | Re: [Csnd] Repeated notes and sustain? |
| Attachments | None |