Re: [PD] pause for [readsf~]

2006-11-16 Thread Peter Plessas
Hi, i made that work using [switch~] in a subpatch, but be aware that you have to fade out in advance to switching off, unless the last signal block appearing on the outlet of that subpatch gets repeated over and over, resulting in a high-pitched sound. lg,P Hans-Christoph Steiner wrote:

Re: [PD] reverse delay for live signal processing?

2006-12-25 Thread Peter Plessas
Hi Kevin, i think you are getting dropouts when using arrays since the graphical data in the array object is being updated. Use the [table] object (which is the same as an array, but without the graphical display right visible. The waveform is accessible once you double-click it). Using

Re: [PD] Granular Cross-fader

2007-01-13 Thread Peter Plessas
http://www.dafx.ca/slides/poster_067.pdf this is from IRCAM and it is beat-synchronised, so just to give another idea P Kyle Klipowicz wrote: Hello listers~ There's been a void of conversation on the list, so I thought I'd pitch my latest idea for a Pd tool: a granular cross-fader.

Re: [PD] cartesian to angles x y z confusion...

2007-01-16 Thread Peter Plessas
Could it be that you are mixing up degrees and radians? afaik, cart2sph gives you radians, but i might be wrong... p8r timon wrote: Hi, I know this is not the way to do it but Im really stuck here. Im plotting text objects on XYZ in Gem. Now, I just want to be able to rotate the global

Re: [PD] Fwd: basic logic (AND OR) and control in PD

2007-01-22 Thread Peter Plessas
Hi, matthew venn wrote: 1/- where can I find documentation on expr? http://crca.ucsd.edu/~syadegar/expr.html lg, P ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] minimum delay time for delread~

2007-01-23 Thread Peter Plessas
Hi! the minimum delay size is one signal block (which defaults to 64 samples, and thus to 1.45msecs at 44.1kHz). If you need to go lower, put the delread~ and delwrite~ in a subpatch and change the blocksize of that subpatch with the block~ object. Check the G04.control.blocksize.pd patch

Re: [PD] Data structure loop selection

2007-02-03 Thread Peter Plessas
Hi, did you try table instead of array? AFAIK, array is just the GUI-variant of table... lg, Peter raul diaz wrote: Hi list, Hi Frank! Thanks Steffen and Frank for your help! I have remake my abstraction and I think now there is no mistake. Now I want to create my array $1_sample

Re: [PD] Data structure loop selection

2007-02-03 Thread Peter Plessas
Hi, ah you are trying to create an object inside a subpatch, right (scripting)? Then the correct syntax would be: [obj 10 10 table( | | [s pd-1_table] where 1_table is the name of a subpatch, so i am not sure if you are to append the suffix .pd 10 10 is the X and Y position of the object.

Re: [PD] Data structure loop selection

2007-02-03 Thread Peter Plessas
would like to create a table in a existing subpatch ($1_table) with all my data structure markers. Maybe it's better to create first my subpatch $1_table with your messages and then create all the data structure inside. Anyway, thanks a lot and regards. 2007/2/3, Peter Plessas [EMAIL PROTECTED

Re: [Pd] relative path names [was: ..]

2007-02-04 Thread Peter Plessas
Hi, i think it depends on the directory you start pd in (look in the titlebar of your pd window to see it) and relative to that you can load files using ../samsung.wav. lg,P ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -

[PD] Variable speed tabwrite~

2007-02-17 Thread Peter Plessas
Dear List, is there a way to write audio into an array at variable speed? Like in tabread4~, controlled by another audio signal (read: phasor~) thanks for ideas, regards,Peter ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] fader gain

2007-02-18 Thread Peter Plessas
I want to point interested people to the great iem abstraction [fadtorms] and [fadtodb], in the cvs abstractions. I am using them everytime i touch a (physical) fader. lg,P Derek Holzer wrote: OK, I guess it's not such a systematic answer as I would hope for ;-) I'll go back to fiddling

[PD] [PD-announce] Amazing Tricks - PureData Workshop

2007-02-22 Thread Peter Plessas
frei und gratis. Weitere Details werden bei der Anmeldung geklärt. Mitarbeit: Florian Hollerweger, Georg Holzmann, Peter Plessas, IOhannes m zmölnig Pd-Graz.mur.at Zeit Ort: * 9. und 10. März 2007, jeweils 10-13 und 14-17 Uhr * im CompetenzCentrum im labor, Jakoministrasse 16, 8010

[PD] [PD-announce] Amazing Tricks - PureData Workshop - Registration

2007-02-22 Thread Peter Plessas
Registration on: http://pd-graz.mur.at/workshop/ ___ PD-announce mailing list PD-announce@iem.at http://lists.puredata.info/listinfo/pd-announce ___ PD-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] Help - filters band limited oscillators!

2007-03-14 Thread Peter Plessas
Hi David, See in the audio help patches: J07.oversampling.pd for bandlimited sawtooth oscillation. lg,PP David Powers wrote: Hello everyone, I tried google and it was no help, and the server for the list archive seems to be down temporarily. Anyway, I'm giving a free (as in free beer)

Re: [PD] Call for Students: PD projects in Google Summer of Code

2007-03-15 Thread Peter Plessas
Dear List, Georg, How? lg,PP Georg Holzmann wrote: Hallo! I just noticed, that the PD projects are accepted by google. (Mentoring organization is IEM - Institute of Electronic Music and Acoustics, Graz) So all students who want to program sth and earn some money in summer should

[PD] float and symbol as abstraction arguments

2007-03-31 Thread Peter Plessas
Hi all, for writing an abstraction i need a mechanism not using externals if possible, to get the content of an $1-argument inside an abstraction which can be of ANY type, i.e. float and symbol. I already tried the iem_anything, dollarg, etc. Is this possible without externals? thanks for any

Re: [PD] float and symbol as abstraction arguments

2007-03-31 Thread Peter Plessas
Hi Hans, Thanks, that is what i was looking for! lgPP Hans-Christoph Steiner wrote: Check out any_argument.pd (abstractions/purepd/any_argument.pd). .hc On Mar 31, 2007, at 4:48 PM, Peter Plessas wrote: Hi all, for writing an abstraction i need a mechanism not using externals

[PD] gem_vu

2007-04-01 Thread Peter Plessas
Hi, Here is a little abstraction. I needed a lot ov VU-meters, which was obviously expensive under TclTk, so i made one in Gem. http://mona.mur.at/gem_vu.png http://mona.mur.at/gem_vu.pd http://mona.mur.at/help-gem_vu.pd lg,PP ___ PD-list@iem.at

Re: [PD] frequency graphing in gem

2007-04-03 Thread Peter Plessas
Have a look at Gem's [scopeXYZ~] too lgPP Nose Hair wrote: I'm trying to get an audio graph to work in gem. I would like it to show the waveform like a table. I have gotten as far as getting a good sample graph but it doesnt work as expected with frequency. Any help would be apreciated.

Re: [PD] float and symbol as abstraction arguments

2007-04-04 Thread Peter Plessas
Hi, i wanted to avoid externals, though i had a look at it before, and it's a nice thing though! Frank's [list append $1] worked for me... thanks! Peter Alexandre Quessy wrote: Other option : try [dollarg] ! a 2007/4/1, Frank Barknecht [EMAIL PROTECTED]: Hallo, Peter Plessas hat

Re: [PD] sonification of large set of data

2007-05-04 Thread Peter Plessas
Hi! Just an Idea: Use OpenOffice Calc (or Excel) to load the text file into columns, export them into four individual text files containing one column each, and load them into four pd arrays? lgPP punchik punchik wrote: hi , i want to sonificate txt file with big data sets... each txt file

Re: [PD] simple Q- co-dependent values

2007-05-05 Thread Peter Plessas
Hi Kim, set is the magic word here: [set 100 | | (numberbox) sets the numberbox to 100 without causing it to output 100. [set $1 makes the value variable. lg, PP Kim Taylor wrote: Hello everyone I have a little question which should be simple but I can't think of how to do it. In

Re: [PD] mp3cast~ low latency

2007-05-14 Thread Peter Plessas
Hi Richard, if the two machines are on the same LAN, have a look at netjack: http://netjack.sourceforge.net/ you are casting from one patch to an icecast server (running on the same machine) and then receiving it from another? Perhaps direct peer2peer streaming could reduce the latency? Yves

Re: [PD] teaching PD at a distance

2007-05-14 Thread Peter Plessas
Hi Darsha, i once remember seeing a virtual talk of i think Ben Bogart, who had his desktop relayed via VNC, streamed his voice and the output of his patch via an audio stream and was receiving questions and responses via an irc channel. This worked out quite good. If you want to give it a

Re: [PD] pd and jack, informal survey

2007-06-09 Thread Peter Plessas
Well, i can't... (Debian on an intel box, Pd version 0.40-2, libjack0.100.0-0) lg,PP James wrote: i'd like to take an informal survey. is it true that you can do no serious work with puredata using the jack audio server for linux and mac os x? thoughts? experiences? tia

[PD] abstraction helppath

2007-06-14 Thread Peter Plessas
Hi! i wrote an abstraction and put it into a subfolder (named 'pp') inside my 'abs' folder. Pd's path points to that 'abs' folder. Loading the abstraction with [pp/absname] works great, but pd searches for the helpfile in: abs/pp/pp/absname-help. Even if i explicitly set the helppath to

Re: [PD] abstraction helppath

2007-06-15 Thread Peter Plessas
Hi Claude, Alexandre Claude Heiland-Allen wrote: What happens if you set the helppath to just 'abs' ? Yes, that did it! Strange, how could i have overlooked something so obvious? regards, Peter ___ PD-list@iem.at mailing list UNSUBSCRIBE and

[PD] vasp help files

2007-07-12 Thread Peter Plessas
Dear List, trying to open a help file for [vasp.mirr], pd searches for help-vasp.pd and vasp.pd and does not find it. The helpfiles are called vasp_mirr.pd etc. Also setting a helppath or path (as recommended in the readme) to /vasp/pd does not help either, but this is the path for some

[PD] More Mtl Pics

2007-09-02 Thread Peter Plessas
Dear List, I want to thank everyone for the great convention in Montreal, this was much much fun, and a very impressive time! a few pictures as well: http://mona.mur.at/webmtlpic/ lg, Peter ___ PD-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] DMX oriented library for PD?

2007-09-22 Thread Peter Plessas
* David Schaffer [EMAIL PROTECTED] [2007-09-22 15:55]: Hi, Is there such thing as a DMX language oriented library for pd? I never heard of it but it would certainly be an amazing step forward for the program: being able to deal with sound, video, midi and lighting control signals

Re: [PD] DMX oriented library for PD?

2007-09-22 Thread Peter Plessas
Hi, i just tried compiling the latest dmx4linux drivers with my little old 2.6.16 kernel, and they seem to work. Now on for the externals! glg, Peter ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] servo control

2007-10-07 Thread Peter Plessas
Some nice projects from Interface-Z: http://www.interface-z.com/ mfg, PP ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Good sounding PD reverb patches - anyone?

2007-10-14 Thread Peter Plessas
Hi, have a look at Thomas Musil's excellent Room Reverberation Simulation too: http://pure-data.cvs.sourceforge.net/pure-data/externals/iem/iem_roomsim/ Ah, i am not sure how to find binaries for windows though... rgrds, PP ___ PD-list@iem.at

Re: [PD] high pass filter for images

2007-11-05 Thread Peter Plessas
Hi, interesting project, how are you doing it? Back-projection and a IR-cam? I am not an image processing whiz, but you could try to subtract your image from a lowpass-filtered copy of the same image. Should give a highpass then. But i am sure there are more clever ways of doing it. Basically a

Re: [PD] pd filter with pole and zero

2007-11-24 Thread Peter Plessas
* Chuckk Hubbard [EMAIL PROTECTED] [2007-11-24 09:28]: On Nov 23, 2007 9:54 PM, cyrille henry [EMAIL PROTECTED] wrote: hello, i know there is a lot's of filter externals available for pd, but i'd like to use some using rpole~ / cpole~ etc. I like playing with raw filters too. I don't

[PD] Meaning of -noprefs

2007-12-01 Thread Peter Plessas
Hi there, i thought that the -noprefs flag also disables loading of the .pdrc file on linux, but it does not. Is this intentional on 0.40-2? regards, PP ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] gem codec basic review

2007-12-01 Thread Peter Plessas
Hi, This made me test Gem on my machine as well and it turns out that: mjpeg: Does not play, throwing lines of the following onto the console: [mjpegb @ 0xb7405b48]not mjpeg-b (bad fourcc) mpeg4: Takes 99% cpu on a 1.6GHz CoreDuo from Intel This is with pd 0.40-2 and a recent cvs Gem checkout.

Re: [PD] Meaning of -noprefs

2007-12-05 Thread Peter Plessas
or in a preferences file. IMHO -noprefs should disable all preferences-mechanisms. Regards, Peter simon wise wrote: On 1 Dec 2007, at 10:11 PM, Peter Plessas wrote: i thought that the -noprefs flag also disables loading of the .pdrc file on linux, but it does not. Is this intentional on 0.40

Re: [PD] Meaning of -noprefs

2007-12-06 Thread Peter Plessas
I'll change that. That said, I think .pdrc should be regarded as deprecated, unless there's something you can do with it that can't be done in .pdsettings instead. cheers Miller On Wed, Dec 05, 2007 at 09:31:31AM +0100, Peter Plessas wrote: Dear List, Simon Thanks Simon for your kind

Re: [PD] [OT] slightly: building audio computer with PD

2008-01-01 Thread Peter Plessas
* Derek Holzer [EMAIL PROTECTED] [2007-12-31 18:47]: So I made sure to mount all my drives read-only, and that everything would start from a script on power-up. Having the whole operating system on a Flash card/USB stick (again, no logging, read-only) is also quite How do you do that? Do

Re: [PD] [OT] slightly: building audio computer with PD

2008-01-01 Thread Peter Plessas
? ;-) Right, that's a nice point in particular! Thanks for the hints! regards, PP best, d. Peter Plessas wrote: * Derek Holzer [EMAIL PROTECTED] [2007-12-31 18:47]: So I made sure to mount all my drives read-only, and that everything would start from a script on power-up. Having the whole

Re: [PD] [OT] slightly: building audio computer with PD

2008-01-02 Thread Peter Plessas
* Derek Holzer [EMAIL PROTECTED] [2008-01-02 21:12]: The whole idea of read-only is for two reasons: 1) To protect the HD in case of unexpected shutdowns (which could happen nightly in a typical museum situation) 2) To preserve the CF memory, which has a limited number of write cycles, in

Re: [PD] Gem forum?

2008-01-19 Thread Peter Plessas
Yes it definitely is! p8r * Dudley Brooks [EMAIL PROTECTED] [2008-01-19 06:29]: Is this the proper forum for questions about Gem? (Programming questions, not low-level and installation questions.) Thanks. ___ PD-list@iem.at mailing list

Re: [PD] fs1r pd sysex

2008-01-26 Thread Peter Plessas
* Timmy [EMAIL PROTECTED] [2008-01-26 13:05]: random question, just a thought, but do any of you think it would be possible to build a sysex editor for something like a fs1r with pd ? i have some software that i can edit it with, but i cant edit it and play sequences with it at the same

Re: [PD] paranoid pd

2008-01-26 Thread Peter Plessas
* Ypatios Grigoriadis [EMAIL PROTECTED] [2008-01-26 17:08]: On 26/01/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: 1) Think in a live situation, you want to close a sub patch but you accidentally close the main patch.. DISASTROUS! :-) Do you actually _have_ to handle closing

Re: [PD] live coding, [was: Re: paranoid pd]

2008-01-27 Thread Peter Plessas
Hi Tim, I havent seen many examples yet around here though. Are many people doing this with pd ? The pd-graz group has done a variant of live-coding in its 'blind date' performances. There we take a teamwork approach, letting multiple players edit the same patch at the same time on stage

Re: [PD] pd thunder

2008-02-06 Thread Peter Plessas
* Andy Farnell [EMAIL PROTECTED] [2008-02-05 23:33]: You're spot on there. I will develop the stereo image as I work on the environment model. But interestingly enough, lightning _is_ an explosion, one hell of a big explosion. The plasma is as hot as the Sun for an instant and that's

Re: [PD] sound device positions change after reboot Pd uses wrong soundcard

2008-02-12 Thread Peter Plessas
Hi, have a look at my similar question on the LinuxAudioUsers list some days ago, kindly answered by Frank B. to full satisfaction :-) http://lists.linuxaudio.org/pipermail/linux-audio-user/2008-February/050967.html lg, P tim wrote: Hi all, Sometimes when I reboot, my soundcard seems to

[PD] Pd Fontsizes

2008-02-16 Thread Peter Plessas
Hi! What reason can there be if the same patch does not display the same fontsizes on two different computers, both running the same OS and the same Pd version? regards, PP ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] Pd Fontsizes

2008-02-16 Thread Peter Plessas
Thanks, will have a look! glg, Peter Claude Heiland-Allen wrote: Peter Plessas wrote: What reason can there be if the same patch does not display the same fontsizes on two different computers, both running the same OS and the same Pd version? Screen DPI setting. This could even vary

Re: [PD] gigaplay

2008-02-19 Thread Peter Plessas
Internet search engines turned up the answer on this one too :-) see: http://lists.puredata.info/pipermail/pd-list/2006-10/042751.html * David Schaffer [EMAIL PROTECTED] [2008-02-19 20:35]: Hi, can anyone tell me where I can get the [gigaplay~] abstraction? Thank you... D.S

Re: [PD] Pd Fontsizes

2008-02-21 Thread Peter Plessas
. roman On Sat, 2008-02-16 at 11:29 +0100, Peter Plessas wrote: Hi! What reason can there be if the same patch does not display the same fontsizes on two different computers, both running the same OS and the same Pd version? regards, PP

[PD] made with pd: Lost Highway, UK premiere

2008-04-04 Thread Peter Plessas
would take the opportunity to thank the pd comunity for their work and support. regards, Peter Plessas ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Query Pd internal variables from a patch

2008-04-22 Thread Peter Plessas
Hi Andy, things you might already know, but never the less: [receive pd dsp] will give you the status of the dsp engine (0/1) and [samplerate~] when banged outputs the current samplerate. but getting the number of channels and the device number might be harder though. regards, Peter Andy

Re: [PD] Teaching Pd to Children

2008-06-14 Thread Peter Plessas
Kyle Klipowicz wrote: Hello Listers~ I'm teaching a 1 month Summer school session for K-8 grade students and would like to include Pd for a mathematics learning tool. I am wondering if anyone else has done something similar, or has any links to DSP/math related materials that would be

Re: [PD] Video with embedded audio track

2008-07-01 Thread Peter Plessas
Dear List, i wonder if anyone has come up with a way to have framewise sync between a gem video and audio via readsf~. Did anyone experience drifts on a 90min video that way? To me it seems like the only way to achieve this is to have a message clock running both readsf~ and the gem movie

Re: [PD] possible to reset phasor~?

2008-07-02 Thread Peter Plessas
Hi, as i remeber from the phasor's helpfile, sending a bang to one of its inlets resets the phase to zero. rgrds, p8r * Atte André Jensen [EMAIL PROTECTED] [2008-07-02 23:45]: Hi Is it possible to reset phasor, so sending it a message that'll make it start from 0 again? I tried using a

Re: [PD] sequencer app for osx

2008-08-11 Thread Peter Plessas
Hi, have a look at damien henry's Open Timeline project too: http://dh7.free.fr/ Screenshot: http://sourceforge.net/project/screenshots.php?group_id=91424 Peter Patrice Colet wrote: i don't believe it's do-able in Pd, not without a ridiculous amount of work, and i'm too lazy to do the work

Re: [PD] OT - force feedback slider

2008-08-12 Thread Peter Plessas
Hi, i recently had the opportunity of testing a recent Lawo broadcast console (mc^2 66) and, surprise, it does not only have motor faders (since most digital consoles for years), but they also programmed nice features like tangible (force-feedback) unity gain positions, rubberband beahvior

Re: [PD] Random - Different seed each time the patch is loaded

2008-09-04 Thread Peter Plessas
Hi, what do you think about using the (white) background hiss of your adc~ soundcard input? Make a snapshot at different intervals, one for each seed. (not tested myself). good luck, PP * Ignacio Viano [EMAIL PROTECTED] [2008-09-04 19:11]: I want many (let's say 10) [random] objects that give

Re: [PD] Random - Different seed each time the patch is loaded

2008-09-04 Thread Peter Plessas
* Charles Henry [EMAIL PROTECTED] [2008-09-04 23:13]: On Thu, Sep 4, 2008 at 1:28 PM, Derek Holzer [EMAIL PROTECTED] wrote: Would $0 instantiation variables be of use here? Or would that make each random generator one value away from the one beside it? not a bad idea--because each random

Re: [PD] Random - Different seed each time the patch is loaded

2008-09-04 Thread Peter Plessas
* Charles Henry [EMAIL PROTECTED] [2008-09-04 23:53]: On Thu, Sep 4, 2008 at 4:29 PM, Peter Plessas [EMAIL PROTECTED] wrote: Perhaps i am getting you wrong, but if i would want different behavior each time i'd open that patch, the noise from your adc~ would do that, bc it is surely

Re: [PD] looking for open dmx external

2008-10-05 Thread Peter Plessas
* David Kirkpatrick [EMAIL PROTECTED] [2008-10-04 13:24]: Sadly I don't have a linux version of Adrian's [dmxsend] object. He made it specifically for a Windows based theatre work I was doing. [dmxsend] is also designed to work with the Enttec DMX USB Pro, not the Enttec Open DMX. The two

Re: [PD] Seamless recording of 2 consecutive audio files?

2009-01-06 Thread Peter Plessas
Dear Frank, List thanks for that help! Yes indeed it works and i have been able of doing it with less objects and the help of bang~ as well. There is one thing i still don't get: I always thought pd would try to execute non-signal messages inbetween audio blocks. And for two messages this would

Re: [PD] Seamless recording of 2 consecutive audio files?

2009-01-06 Thread Peter Plessas
Hi all, Roman Haefeli wrote: On Tue, 2009-01-06 at 13:43 +0100, Peter Plessas wrote: Dear Frank, List thanks for that help! Yes indeed it works and i have been able of doing it with less objects and the help of bang~ as well. There is one thing i still don't get: I always thought pd would

Re: [PD] Seamless recording of 2 consecutive audio files?

2009-01-07 Thread Peter Plessas
Hi! Frank Barknecht wrote: Hallo, Peter Plessas hat gesagt: // Peter Plessas wrote: i somehow assumed, that [writesf~] doesn't use scheduled messages... I always thought that Pd would execute messages in between audio blocks. So if i sent two messages (stop old file, start new file), i

Re: [PD] Seamless recording of 2 consecutive audio files?

2009-01-10 Thread Peter Plessas
Dear Frank, list, probably having found the culprit, it looks like recording two consecutive 24bit .wav files using the [open -bytes 3 foo.wav] message does introduce a small click at the gap. This behavior is independent of weather the bangs are timed to blocksize intervals explicitely. Can

[PD] logical timing question

2009-01-10 Thread Peter Plessas
Dear list, i have a question regarding timing in Pd: I understand that messages to tilde objects just get passed to the DSP tree within DSP blocks. How about the reverse? Found out that snapshot~ is returning the last sample of the last block during which it got banged. This is fine, since

Re: [PD] logical timing question

2009-01-11 Thread Peter Plessas
Hi all, Frank Barknecht wrote: Hallo, Peter Plessas hat gesagt: // Peter Plessas wrote: i have a question regarding timing in Pd: I understand that messages to tilde objects just get passed to the DSP tree within DSP blocks. How about the reverse? Found out that snapshot

Re: [PD] logical timing question

2009-01-11 Thread Peter Plessas
Thanks Roman, (see for comments below) Roman Haefeli wrote: On Sun, 2009-01-11 at 12:26 +0100, Peter Plessas wrote: Timing is a very interesting topic in pd (and with computers in general). When i try to measure the [realtime] of a [metro 4] object, i get: print: 11.351 print: 0.122 print

Re: [PD] logical timing question

2009-01-11 Thread Peter Plessas
Hi again, Frank(ly), there is still something unclear to me. Please see below. Frank Barknecht wrote: In general, Pd has like to times: One is the time realm of clock-delayed messages, i.e. everything that originates in a clock objects like metro, delay, pipe, qlist, etc. Clock delayed

Re: [PD] logical timing question

2009-01-11 Thread Peter Plessas
Thanks for the discussion Roman, see below Roman Haefeli wrote: while not being 100% sure, what frank meant with the other timing domain, i guess, he meant all the messages, that are not initiated by [metro]/[delay]/[pipe] and co. this would be messages from: - the guis and clicks on

Re: [PD] logical timing question

2009-01-11 Thread Peter Plessas
Claude Heiland-Allen wrote: Peter Plessas wrote: Thanks for the discussion Roman, see below Roman Haefeli wrote: while not being 100% sure, what frank meant with the other timing domain, i guess, he meant all the messages, that are not initiated by [metro]/[delay]/[pipe] and co

Re: [PD] logical timing question

2009-01-11 Thread Peter Plessas
Dear Roman, Frank, List Roman Haefeli wrote: while not being 100% sure, what frank meant with the other timing domain, i guess, he meant all the messages, that are not initiated by [metro]/[delay]/[pipe] and co. this would be messages from: - the guis and clicks on message boxes -

Re: [PD] wireless contact mics

2009-02-16 Thread Peter Plessas
* Oded Ben-Tal o...@ccrma.stanford.edu [2009-02-15 20:19]: While not directly pd-question I thought someone might know: Does anyone have experience working with wireless contact mics? any recommendations on the not-so-very-expensive end of things? Hi, you might have a look at the AKG C-411

Re: [PD] Gem as GUI

2009-05-09 Thread Peter Plessas
See my humble little effort in making a VU meter in Gem, as i was trying to avoid the CPU strain of 24 VU meters in Tcl/Tk. http://plessas.mur.at/ cheers, Peter glerm soares wrote: Is there any project of abstractions that uses Gem as Graphic User Interface seriously? I mean: Create other

Re: [PD] more Pd/shell communication

2009-05-20 Thread Peter Plessas
Flo, i am sure you have tried this, and others have suggested it too, but there is always the [shell] external in externals/ggee i think. mfg,adsr Peter Florian Hollerweger wrote: Hi list, I am a happy user of Chris McCormick's recent suggestion for Pd/shell communication using [netsend],

Re: [PD] building vbap on linux fails

2009-05-20 Thread Peter Plessas
Claude Heiland-Allen wrote: Peter Plessas wrote: -Werror Remove this. It's useful when developing personally, but impractical for released code that people with other versions of other compilers need to use. Thanks Claude, that obviously worked! Peter

[PD] hid without polling

2009-06-02 Thread Peter Plessas
Hi list, i have an endless rotary encoder (Griffin Powermate) which i want to use along the [hid] external. Since the encoder only gives a relative value, it is very important to know, when those relative changes occur. I wonder if there is a way to get the values from the [hid] without

Re: [PD] Re : Split multichannel audio file into stereo pairs

2009-06-16 Thread Peter Plessas
IOhannes m zmölnig wrote: dwanafite wrote: Hi You could use [readsf~ 12] to read your file and then several [writesf~ 2] to record, but i guess you want something faster... in 0.42 you can use batchmode to do immediate (faster-than realtime) processing. in older versions you can just use

[PD] maximum number of outlets, pd file format

2009-07-27 Thread Peter Plessas
Dear list, i want to create a [readsf~] with 120 audio outlets, and connect them to somewhere. I create that very patch in a text editor, since i don't want to pull that many patchcords. If i open that patch with pd, it seems to load it fine, but if i save the same patch from within pd, the

Re: [PD] maximum number of outlets, pd file format

2009-07-27 Thread Peter Plessas
(replying to myself) this is only an issue with readsf~. An [unpack] with 120 arguments and outlets works and saves fine. PP Peter Plessas wrote: Dear list, i want to create a [readsf~] with 120 audio outlets, and connect them to somewhere. I create that very patch in a text editor, since i

Re: [PD] maximum number of outlets, pd file format

2009-07-27 Thread Peter Plessas
format seems to allow for more channels than that, i was able to create a file without errors, with its channels getting displayed in audacity (before that software gracefully crashes) PP Peter Plessas wrote: Dear list, i want to create a [readsf~] with 120 audio outlets, and connect them

Re: [PD] maximum number of outlets, pd file format

2009-07-27 Thread Peter Plessas
Once more: problem solved: Accessible via #define MAXSFCHANS 64 in d_soundfile.c oh, great Pd! Peter Peter Plessas wrote: Dear list, i want to create a [readsf~] with 120 audio outlets, and connect them to somewhere. I create that very patch in a text editor, since i don't want to pull

Re: [PD] CW_binaural~

2009-10-04 Thread Peter Plessas
Have a look at the iem_bin_ambi library too, the bin standing for binaural here. regards, P Arxontis Politis wrote: Hi, I'm trying to implement a binaural mixer versus an ambisonic-to-binaural decoder, for a comparison of their performance. For the binaural mixer I'm trying to use the

Re: [PD] English-speaking German piano

2009-10-06 Thread Peter Plessas
Yes, it is Winfried Ritsch's Automatenklavier, using custom built electronics (PIC microcontrollers via multiple serial links from a computer, more info: https://algo.mur.at/data/projekte/algopic/ Voice analysis was done at IEM in Pd by Thomas Musil and Winfried Ritsch. The piano (there exist

Re: [PD] [PD-announce] PD + Lingerie

2009-10-10 Thread Peter Plessas
reminds me of Cyrille's beautiful projections at the Girbaud fashion show (old posting, link inside it leading to video no longer working) http://lists.puredata.info/pipermail/pd-list/2005-03/026372.html P mark edward grimm wrote: Pd meets fashion! http://www.youtube.com/watch?v=C10C1oTfDZM

[PD] default blocksize readsf

2009-11-17 Thread Peter Plessas
Dear List, what is the default (disk) blocksize of the read/writesf~ objects when one doesn't supply an argument? Thanks! P ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] default blocksize readsf

2009-11-19 Thread Peter Plessas
can only be set for the whole disk (during the formating process) and not for specific sectors or files. Unless i miss something.. alabala 2009/11/17 Peter Plessas ples...@mur.at Dear List, what is the default (disk) blocksize of the read/writesf~ objects when one doesn't supply an argument

[PD] Gem compile error: filmAVIPLAY.cpp

2009-12-05 Thread Peter Plessas
Dear List, getting this trying to compile gem-0.92-1: g++ -c-g -O2 -fPIC -freg-struct-return -O3 -falign-loops=32 -falign-functions=32 -falign-jumps=32 -funroll-loops -ffast-math -mmmx -msse2 -I/usr/include/lqt -I/usr/include/lqt -I/usr/include/avifile-0.7 -I/usr/include/FTGL

Re: [PD] Gem compile error: filmAVIPLAY.cpp

2009-12-06 Thread Peter Plessas
Thanks IOhannes, IOhannes m zmoelnig wrote: Peter Plessas wrote: Dear List, getting this trying to compile gem-0.92-1: make[1]: *** [filmAVIPLAY.o] Error 1 this is related to the avifile library, so it might help to know which exact version of avifile-0.7 you are compiling/linking

Re: [PD] bug 2621932 appeared in version 0.42 - was Re: crazy bug: all user actions executed twice

2009-12-11 Thread Peter Plessas
IOhannes m zmölnig wrote: made this feature optional with one of the bugfix releases. jusst add -noautopatch to the startup options. Can i include it in the .pdrc file too? Oh, and i just compiled Gem and at loading the lib it posts a message about gem.conf not being found. What is this file? A

Re: [PD] gem.conf

2009-12-14 Thread Peter Plessas
IOhannes m zmoelnig wrote: cyrille henry wrote: a nice use i see with this conf file is to change default video in device. so that you don't have change your patch if you change computer (1 with V4L and 1 with V4L2 webcam)... like that. or whether you want to use threaded image loading

Re: [PD] [PD-announce] gem 0.92.2 released!

2009-12-15 Thread Peter Plessas
Thank you IOhannes! P IOhannes m zmoelnig wrote: the second bugfix release for Gem 0.92 has been made available to the public. it fixes a number of showstoppers in 0.92.1, namely: * crasher bugs o fixed bug with threaded image loading o fixed use of openGL-functions without a

Re: [PD] Turing Machine?

2010-03-05 Thread Peter Plessas
Fbar, as usual :-) http://footils.org/cms/weblog/2007/feb/07/turing-machine-pd/ Jon wrote: Hello, Has someone written a simple turing machine simulator in pd? If not i might try to, but would like to know from you folks' own experiences, as i figured it's something someone must have attempted

Re: [PD] Vu-Meter - WAS: nusmuk_audio

2010-04-24 Thread Peter Plessas
colet.patr...@free.fr wrote: - Roman Haefeli reduzie...@yahoo.de a écrit : A VU-meter is very expensive to have in a Pd-window, unfortunately. unless you make one in Gem: http://plessas.mur.at/rnd/puredata/puredata.html mfg.adsr P ___

Re: [PD] Vu-Meter - WAS: nusmuk_audio

2010-04-25 Thread Peter Plessas
colet.patr...@free.fr wrote: very cool! are you also projecting to include mouse bindings for grabbing a slider in there? Actually not, since it's a vu-meter. But of course, doing a fader would not be too hard(tm). Have a try at it! kind, P ___

Re: [PD] Piezo device comanding a bang in Pd through arduino

2010-04-25 Thread Peter Plessas
Camilo Cadavid Corredor wrote: Hello, I am new to arduino. I plan to connect a piezo device which can send a signal to b recognized by pd as a bang. I was able to download the firmware into arduino, and worked with the popular example of connection to pd found in the web. Now i am interested

Re: [PD] Vu-Meter - WAS: nusmuk_audio

2010-04-26 Thread Peter Plessas
for OT again, P jurgen wrote: mfg = mit freundlichen Grüssen (german lingo) adsr = envelope or in german da habe ich dich aber schön eingewickelt just a guess Jurgen On Apr 26, 2010, at 3:00 PM, IOhannes m zmoelnig wrote: On 2010-04-24 12:02, Peter Plessas wrote: mfg.adsr P what does mfg.adsr

  1   2   >