massign midi channel to multiple instruments
Date | 2015-06-07 11:06 |
From | Richard |
Subject | massign midi channel to multiple instruments |
I am trying to assign midi channel 1 to instr 11 and 12, like: massign 1,11 massign 1,12 It seems that only the latter is triggered. What is the best way to do this? Richard ------------------------------------------------------------------------------ _______________________________________________ Csound-users mailing list Csound-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/csound-users Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2015-06-07 12:46 |
From | jpff |
Subject | Re: massign midi channel to multiple instruments |
Send it to a low-numbered instrument tht uses event_i twice? On Sun, 7 Jun 2015, Richard wrote: > I am trying to assign midi channel 1 to instr 11 and 12, like: > > massign 1,11 > massign 1,12 > > It seems that only the latter is triggered. > What is the best way to do this? > > Richard > ------------------------------------------------------------------------------ _______________________________________________ Csound-users mailing list Csound-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/csound-users Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2015-06-07 20:35 |
From | Iain McCurdy |
Subject | Re: massign midi channel to multiple instruments |
Attachments | None None |
I think the best way to do this is to just massign channel 1 to instr 11 and then to add a subinstr in instr 11 calling instr 12. Then instr 12 will turn on and off in sync with instr 11 which turns on and off according to midi input. Note that instr 12 won't output audio, but instead sends its audio back to instr 11. I. > Date: Sun, 7 Jun 2015 12:06:24 +0200 > From: zappfinger@gmail.com > To: csound-users@lists.sourceforge.net > Subject: [Csnd] massign midi channel to multiple instruments > > I am trying to assign midi channel 1 to instr 11 and 12, like: > > massign 1,11 > massign 1,12 > > It seems that only the latter is triggered. > What is the best way to do this? > > Richard > > ------------------------------------------------------------------------------ > _______________________________________________ > Csound-users mailing list > Csound-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-users > Send bugs reports to > https://github.com/csound/csound/issues > Discussions of bugs and features can be posted here |
Date | 2015-06-07 21:31 |
From | Richard |
Subject | Re: massign midi channel to multiple instruments |
Attachments | None None |
Thanks, interesting approach, but I think I will go for the i_event
solution. Because in my case all instruments are self-contained and are loaded in a csound server setting. Each instrument has its own pan, effect, and connection to a mixer channel.. Richard On 07/06/15 21:35, Iain McCurdy wrote:
|