related question: which would be faster: writing an incoming signal to an array in real time (tabwrite~) or using a delay line (delwrite~) of the same length (ca. 4000 ms)?
I would be surprised if tabwrite~ + tabread4~ and delwrite~ + vd~ don't give the same performance as they both do roughly the same thing, writing to memory and reading using the same 4-point interpolation (AFAIK). So it just depends which is more convenient, which sounds like delwrite~ + vd~ in this case.
If I can make a (sort of related) suggestion: granular synths generally either use a delay line (as you mention here) or a static table (which is also cool). What I've done is make a 'grains~' patch which generates pitches, amps, pans etc. for each grain, and has several instances of $1-grain~. You can then either create 'grains~ del ...' or 'grains~ tab ...' to use lots of del-grain~s or tab-grain~s inside grains~. This handles both cases at once (and if you want can be extended further), with *-grain~ receiving the pitches etc. from grains~ and throw~ing the output back.
Stefan Turner
___________________________________________________________ ALL-NEW Yahoo! Messenger - all new features - even more fun! http://uk.messenger.yahoo.com
Hello, I was wondering, is there some external toolkit that gives me a textinput field that I can use to send arbitrary messages ( doing, in fact the same as double clicking a message box, changing the contents and sending it but easier and faster?). The only way it seems to find out is by installing all of them somehow, I prefer not to do that yet.
Hallo, MvH hat gesagt: // MvH wrote:
Hello, I was wondering, is there some external toolkit that gives me a textinput field that I can use to send arbitrary messages ( doing, in fact the same as double clicking a message box, changing the contents and sending it but easier and faster?). The only way it seems to find out is by installing all of them somehow, I prefer not to do that yet.
You could be able to build something like this using the tot external. For simple words, a symbol-atom is also very nice, although it doesn't handle spaces and backslashes well.
Frank Barknecht _ ______footils.org__
_ __latest track: fqdn _ http://footils.org/cms/show/38
Ok I will have a look. I don't think the symbol thing is very useful for what I want: an entry dialog for writing osc messages, and hit enter to add them to a list in a sequencer. ( tracker )
Frank Barknecht wrote:
Hallo, MvH hat gesagt: // MvH wrote:
Hello, I was wondering, is there some external toolkit that gives me a textinput field that I can use to send arbitrary messages ( doing, in fact the same as double clicking a message box, changing the contents and sending it but easier and faster?). The only way it seems to find out is by installing all of them somehow, I prefer not to do that yet.
You could be able to build something like this using the tot external. For simple words, a symbol-atom is also very nice, although it doesn't handle spaces and backslashes well.
Ciao
Hallo, MvH hat gesagt: // MvH wrote:
Ok I will have a look. I don't think the symbol thing is very useful for what I want: an entry dialog for writing osc messages, and hit enter to add them to a list in a sequencer. ( tracker )
One trick I used for this is to use a separator other than " " for writing messages. Then with symbol2list or fromsymbol I split up that symbol at the seperator character into a list. For example like this:
[/osc/message#1#2#345
|
[s2l #]
Just choose a character which will not appear in the intended message.
Frank Barknecht _ ______footils.org__
_ __latest track: fqdn _ http://footils.org/cms/show/38
indeed toxy does come with some examples of using real text entry widgets:
txt-test.pd
MvH wrote:
Ok I will have a look. I don't think the symbol thing is very useful for what I want: an entry dialog for writing osc messages, and hit enter to add them to a list in a sequencer. ( tracker )
Frank Barknecht wrote:
Hallo, MvH hat gesagt: // MvH wrote:
Hello, I was wondering, is there some external toolkit that gives me a textinput field that I can use to send arbitrary messages ( doing, in fact the same as double clicking a message box, changing the contents and sending it but easier and faster?). The only way it seems to find out is by installing all of them somehow, I prefer not to do that yet.
You could be able to build something like this using the tot external. For simple words, a symbol-atom is also very nice, although it doesn't handle spaces and backslashes well.
Ciao
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://iem.at/cgi-bin/mailman/listinfo/pd-list
I found the txt-test.pd file but not the single line entry widget; it's not in the doc dir. am I missing something ( or more?) I cannot create a pd object like
[widget symbol test]
Is there some more documentation out there on how to write these widgets? I'm very interested in creating my own. ( or should I learn tcl/tk first? ) I used the cvs repository to get the sources, might that be missing something?
( I would really like to use a hit enter text entry thingy )
cheers!
Matthijs.
Krzysztof Czaja wrote:
Josh Steiner wrote:
indeed toxy does come with some examples of using real text entry widgets:
txt-test.pd
[widget txt ...] is a multi-liner (text widget), [widget symbol ...] is a one-liner (entry widget), which is triggered by hitting enter.
Krzysztof
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://iem.at/cgi-bin/mailman/listinfo/pd-list
there is "entry" from ben bogard: http://cvs.sourceforge.net/viewcvs.py/pure-data/externals/bbogart/entry/
patrick
----- Original Message ----- From: "MvH" cola@looze.net Cc: pd-list@iem.at Sent: Sunday, February 06, 2005 10:47 AM Subject: [PD] textinput
Hello, I was wondering, is there some external toolkit that gives me a textinput field that I can use to send arbitrary messages ( doing, in fact the same as double clicking a message box, changing the contents and sending it but easier and faster?). The only way it seems to find out is by installing all of them somehow, I prefer not to do that yet.
PD-list@iem.at mailing list UNSUBSCRIBE and account-management ->
Looks almost like what i need; just miss the 'press enter to post' I took a look at the sources but couldnt' find where to add that :) I'll have a look at toxy, tot to see what I understand from that
thanx all!
patrick wrote:
there is "entry" from ben bogard: http://cvs.sourceforge.net/viewcvs.py/pure-data/externals/bbogart/entry/
patrick
----- Original Message ----- From: "MvH" cola@looze.net Cc: pd-list@iem.at Sent: Sunday, February 06, 2005 10:47 AM Subject: [PD] textinput
Hello, I was wondering, is there some external toolkit that gives me a textinput field that I can use to send arbitrary messages ( doing, in fact the same as double clicking a message box, changing the contents and sending it but easier and faster?). The only way it seems to find out is by installing all of them somehow, I prefer not to do that yet.
PD-list@iem.at mailing list UNSUBSCRIBE and account-management ->
http://iem.at/cgi-bin/mailman/listinfo/pd-list
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://iem.at/cgi-bin/mailman/listinfo/pd-list