| _<< | _music | _video | _code | _hardware | _installations | _info | _news | (_f0blog) |
| _<< | _music | _video | _applications | _max | _pd | _java | _supercollider | _other |
| _<< | _music | _video | _applications | _max | _pd | _java | _supercollider | _other |
externalsf0.extsome externals for _maxmsp
version 08-11-04 / freeware(gnugpl) / source & binaries included
previous version for os9.
f0.keyboard_layoutget and set keyboard layout and input method. osx only.
f0.jit2n2 / f0.n22jitbridge objects for peace and understanding. converts data between nato.0+55 and jitter. os9 only.
|
abstractionsred-frameworkframework for stacking, chaining and mixing max/jitter patches. been working on it since 2006 and now contains >100 modules.
f0.absa bunch of abstractions that someone might find helpful including:
version 08-11-09 / freeware
previous version for os9.
make-envelopesseven abstractions that creates different kinds of envelopes. perfect for grain synthesis. including adsr, blackman, curve, gauss, hamming, hanning, trapezoid.
|
miscmax java - buf.Op extraswith this copyFrom method you can select and copy into a msp buffer at any position. to install open the java source code for buf.Op from within max with 'viewsource'. then paste this code at the end of that document - just before the last closing curlybracket. save, press cmd+k and click compile. last restart max. notice that this will be overwritten whenever you update max.
//redFrik 050513, 051128, 060927
public void copyFrom(String frombuf, long destoffset) {
copyFrom(frombuf, destoffset, 0);
}
public void copyFrom(String frombuf, long destoffset, long srcoffset) {
long length= MSPBuffer.getSize(frombuf);
copyFrom(frombuf, destoffset, srcoffset, length-srcoffset);
}
public void copyFrom(final String frombuf, final long destoffset, final long srcoffset, final long srcsize) {
MaxSystem.deferLow(new Executable() {
public void execute() {
int channels= MSPBuffer.getChannels(frombuf);
for(int i= 1; i<=channels; i++) {
MSPBuffer.poke(bufname, i, destoffset, MSPBuffer.peek(frombuf, i, srcoffset, srcsize));
}
outlet(0, "done");
}
});
}
and here is a little example patch...
f0.overviewbrowser patch for all my objects. by courtesy of dlf:telco.sys
(see also maxobjects.com) objectlistoptional file for my externals and abstractions. drop in Cycling '74/init/ folder
examplesjitter - simple demo patches made for a presentation at fylkingen, stockholm in march 2004
|
| _<< |