[maxmsp] Re: signal process selected pitches
Seejay James
cjlacke at ilstu.edu
Tue Jan 1 23:00:49 MST 2008
- Previous message: [maxmsp] signal process selected pitches
- Next message: [maxmsp] Re: signal process selected pitches
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I avoid gate~ or selector~ generally unless they are needed for certain things. there's mute~ for turning off the signal path totally (to free up DSP power). But it sounds like you're looking for matrix~. You can set the glide time to shut on and off the signal paths when they are switched. The gainfaders also have built-in interpolation time, but to mute / unmute you need to store the original fader level so you can go back to it. matrix~ is easier (and provides a lot of inlets / outlets). Plus you can use preset, pattr, or mtr with them.... great stuff! #P window setfont "Sans Serif" 14.; #P window linecount 1; #P message 325 84 48 9109518 clear; #P window setfont "Sans Serif" 9.; #P window linecount 2; #P comment 265 123 156 9109513 clear before playback to see the recording actions clearly; #N vpreset 1; #P preset 60 110 47 27; #P window linecount 1; #P comment 114 244 156 9109513 see help for details like ramp time; #P newex 113 218 105 9109513 matrix~ 8 4 1.; #P comment 154 87 156 9109513 rec. click cells. playback. whee!; #P window setfont "Sans Serif" 14.; #P user umenu 113 60 102 9109563 1 64 80 0; #X setrgb 255 255 255 0 0 0 255 255 255 221 221 221 170 170 170 119 119 119 187 187 187; #X add stop; #X add record; #X add play; #X add read; #X add write; #P user matrixctrl 113 110 131 67 MatrixDefaultCell.pct MatrixDefaultBkgnd.pct 131 67 16 16 8 4 16 16 1 1 48 2 5120 0; #P window setfont "Sans Serif" 9.; #P newex 113 86 36 9109513 mtr 1; #P connect 1 0 4 0; #P connect 1 0 0 1; #P connect 8 0 1 0; #P connect 0 1 1 0; #P connect 2 1 0 0; #P connect 6 0 1 0; #P window clipboard copycount 9;
- Previous message: [maxmsp] signal process selected pitches
- Next message: [maxmsp] Re: signal process selected pitches
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
