[Csnd] panic button
Date | 2010-06-07 18:41 |
From | Stefan Thomas |
Subject | [Csnd] panic button |
Dear community, from some midi-keyboards and sequencer programs I do know a so called panic button. Is it possible to implement this within csound? |
Date | 2010-06-07 19:14 |
From | Michael Gogins |
Subject | [Csnd] Re: panic button |
Perhaps you could do it with a user-defined opcode that would send out a NOTE OFF event for every MIDI key number on every MIDI channel. Hope this helps, Mike On Mon, Jun 7, 2010 at 1:41 PM, Stefan Thomas |
Date | 2010-06-07 19:21 |
From | Stefan Thomas |
Subject | [Csnd] Re: Re: panic button |
It sounds complicated, for me. Has someone else tried something like this? 2010/6/7 Michael Gogins <michael.gogins@gmail.com> Perhaps you could do it with a user-defined opcode that would send out |
Date | 2010-06-07 19:50 |
From | jpff@cs.bath.ac.uk |
Subject | [Csnd] Re: Re: Re: panic button |
Do yopu mean thi sfor MIDI use or a general solution? Do you want Csound to exit or reset or what? > It sounds complicated, for me. > Has someone else tried something like this? > > 2010/6/7 Michael Gogins |
Date | 2010-06-07 19:57 |
From | Oeyvind Brandtsegg |
Subject | [Csnd] Re: Re: Re: panic button |
In ImproSculpt4 I use turnoff2 to do this. However, I don't really want all instrument instances to stop, as effects and other "always on" instruments should keep going. I use turnoff2 generously when "panic" is activated, turning off all instances of all instruments that could have been triggered by midi. so it looks like this: allnotesoff: turnoff2 111, 0, 1 turnoff2 112, 0, 1 turnoff2 113, 0, 1 turnoff2 114, 0, 1 turnoff2 115, 0, 1 turnoff2 116, 0, 1 turnoff2 117, 0, 1 turnoff2 118, 0, 1 turnoff2 119, 0, 1 turnoff2 120, 0, 1 turnoff2 121, 0, 1 turnoff2 122, 0, 1 turnoff2 123, 0, 1 turnoff2 124, 0, 1 turnoff2 125, 0, 1 turnoff2 126, 0, 1 turnoff2 127, 0, 1 turnoff2 128, 0, 1 turnoff2 129, 0, 1 turnoff2 130, 0, 1 turnoff2 131, 0, 1 turnoff2 132, 0, 1 turnoff2 133, 0, 1 turnoff2 134, 0, 1 turnoff2 135, 0, 1 turnoff2 136, 0, 1 turnoff2 137, 0, 1 turnoff2 138, 0, 1 turnoff2 139, 0, 1 turnoff2 140, 0, 1 vstmidiout giVST_Clav, 176, 0, 123, 127 event "i", 1029, 0, 1 ; all notes off for formant synthesizers (fof and noise) goto end The two last lines are special cases for a vst instrument, and a monophonic csound instr . This was included here more to show that there's general (turnoff everything that has a midi channel assigned) and special handling and you might need to do both. Oeyvind 2010/6/7 Stefan Thomas |
Date | 2010-06-29 08:51 |
From | Stefan Thomas |
Subject | [Csnd] Re: Re: Re: Re: panic button |
Dear community, isn't it possible to activate midi-controller number 123, via e.g. the left pedal? 2010/6/7 Oeyvind Brandtsegg <obrandts@gmail.com> In ImproSculpt4 I use turnoff2 to do this. |
Date | 2010-07-01 05:53 |
From | Stefan Thomas |
Subject | [Csnd] Re: Re: Re: Re: panic button |
Dear community, I found a solution for my problem. I've just programmed my midi-pedal to send controller message to controller 123, and now it works! Sorry, that I didn't have this solution in mind. 2010/6/29 Stefan Thomas <kontrapunktstefan@googlemail.com> Dear community, |