Re: [PD] Problems with video mixer and abstractions

2011-05-12 Thread cyrille henry
hello, can't test because there are lot's of object that i don't have on my computer. but in your player, after pix_film, i think you should use 2 pix_separator. (one that send image to pix_mix, the other to the preview) Cyrille Le 12/05/2011 00:53, Antonio Roberts a écrit : I've created an

[PD] [PD-announce] Live augmented performance @ WRO Biennale, Poland

2011-05-12 Thread Marco Donnarumma
(sorry for x-post) I C::ntr::l Nature v3 @ WRO2011 Media Art Biennale, Alternative Now The Grotowsky Institute 13 May, h 19.00 Wroclaw, Poland Audiovisual concert I C::ntr::l Nature v.3.0 for augmented bass guitar and butterfly by Marco Donnarumma (UK). Work info:

[PD] dsp external pointer problem

2011-05-12 Thread Ahmet Kizilay
Hello, I have been trying to solve this problem for a couple of days by now. I am pretty sure that this is a simple pointer arithmetics error on my part, but still, this is driving me crazy and I hope you don't mind asking me this question here. I am writing a simple external which adds all the

Re: [PD] dsp external pointer problem

2011-05-12 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-05-12 10:34, Ahmet Kizilay wrote: while(n--) { *out = 0.0; signals can share memory, e.g. the pointer to the/an input vector might be the same as the pointer to the/an output vector. therefore the above _might_ overwrite the data in

Re: [PD] dsp external pointer problem

2011-05-12 Thread Claude Heiland-Allen
Hi, Unrelated to your issue, perhaps, but I thought this work mentioning: On 12/05/11 09:34, Ahmet Kizilay wrote: t_int *ak_addthese_tilde_perform(t_int *w) { [snip] t_sample ** ins = getbytes(sizeof(t_sample *) * 2); [snip] There's a memory leak here (no corresponding call to

Re: [PD] auto-completion with popup [was: 3 new gui-plugins]

2011-05-12 Thread yvan volochine
On 05/12/2011 04:32 AM, JF wrote: Just saw this new version now. Looks absolutely awesome Yvan. Can't wait to try it out and thanks for including the 'All' mode that I bugged you about - I hope it's of use to more users than just me! well I'm sorry to tell you that this was eventually

Re: [PD] udpsend performance issue

2011-05-12 Thread matteo sisti sette
Some follow-up on this: - By bundling the data into few large packets instead of many small packets (hence decreasing the overhead), indeed the blocking occurs much less frequently as Martin suggested, though it still occasionally occurs every once in a while. I am sending an OSC bundle of 100

Re: [PD] udpsend performance issue

2011-05-12 Thread Martin Peach
On 2011-05-12 07:59, matteo sisti sette wrote: Some follow-up on this: - By bundling the data into few large packets instead of many small packets (hence decreasing the overhead), indeed the blocking occurs much less frequently as Martin suggested, though it still occasionally occurs every once

Re: [PD] multiple OSC messages in one udp packet?

2011-05-12 Thread matteo sisti sette
2011/5/10 matteo sisti sette matteosistise...@gmail.com: Hi, Does the OSC standard (or to be more precise, the standard for OSC over UDP) allow to pack multiple OSC messages into a single UDP packet? If so, is there any chance that [packosc] and/or [udpsend] do so behind the scene (i.e.

[PD] pd-gem, png and win7

2011-05-12 Thread palmieri, ricardo
hi guys.. somebody of you had experience troubles using transparent png´s in windows7, with puredata gem? im using the same patch in mac osx and win7. in win7, the png doesnt open. i just have installed pd-extende 0.42, quicktime and gimp in this computer (i7, nvidia 460sli, 8ram). any tip?

Re: [PD] multiple OSC messages in one udp packet?

2011-05-12 Thread András Murányi
On Thu, May 12, 2011 at 16:33, matteo sisti sette matteosistise...@gmail.com wrote: [...] Does anybody of you perhaps know a (free) generic UDP monitoring application for the iPad, so that I could figure out whether the packets are being dropped by TouchOSC or by the iPad? I guess you

Re: [PD] pd-gem, png and win7

2011-05-12 Thread Matteo Sisti Sette
On 05/12/2011 04:42 PM, palmieri, ricardo wrote: hi guys.. somebody of you had experience troubles using transparent png´s in windows7, with puredata gem? Not just with _transparent_ png's. Png's are not supported in Windows, unfortunately. any tip? Somebody suggested to use [pix_film]

Re: [PD] multiple OSC messages in one udp packet?

2011-05-12 Thread Matteo Sisti Sette
On 05/12/2011 04:47 PM, András Murányi wrote: http://www.wireshark.org/ http://sourceforge.net/projects/packetpeeper/ I meant something that I can run on the iPad; I have already sniffed the network from my Pc and I see all the packets; I need to sniff it (or just receive the udp packets

Re: [PD] multiple OSC messages in one udp packet?

2011-05-12 Thread András Murányi
2011/5/12 Matteo Sisti Sette matteosistise...@gmail.com On 05/12/2011 04:47 PM, András Murányi wrote: http://www.wireshark.org/ http://sourceforge.net/projects/packetpeeper/ I meant something that I can run on the iPad; I have already sniffed the network from my Pc and I see all the

Re: [PD] pd-gem, png and win7

2011-05-12 Thread chris clepper
Try opening the file with pix_film. Quicktime will sometimes open still images as one frame movies. On Thu, May 12, 2011 at 10:42 AM, palmieri, ricardo ricardopalmi...@gmail.com wrote: hi guys.. somebody of you had experience troubles using transparent png´s in windows7, with puredata gem?

[PD] [PD-announce] completion-plugin new version

2011-05-12 Thread yvan volochine
hi I rewrote autocompletion-plugin which is now called 'completion-plugin'. there are some cool new features: - new GUI (inspired from desire-data) - added an option file - auto-creation of completed objects (via Return key) - added a 'save_mode' so pd remembers keywords for

Re: [PD] [PD-announce] completion-plugin new version

2011-05-12 Thread Marco Donnarumma
Brilliant! M On Thu, May 12, 2011 at 6:11 PM, yvan volochine yvan...@gmail.com wrote: hi I rewrote autocompletion-plugin which is now called 'completion-plugin'. there are some cool new features: - new GUI (inspired from desire-data) - added an option file - auto-creation of

Re: [PD] dsp external pointer problem

2011-05-12 Thread Ahmet Kizilay
IOHannes, With your suggestion the object is finally working properly. Thanks a lot. Claude, Thanks for pointing out. I changed my code accordingly. Best, ahmet kizilay On Thu, May 12, 2011 at 12:09 PM, Claude Heiland-Allen cla...@goto10.org wrote: Hi, Unrelated to your issue, perhaps, but I

[PD] gui plug-ins not loading in new install

2011-05-12 Thread ALAN BROOKER
Hi List, Hope I can ask for some advice? I have a fresh Kubuntu (Lucid) and Pd extended 0.43 (from nightly builds) install-Ive put the GUI plug-ins in start up but getting error messages on start up : '/usr/lib/pd/startup/buttonbar-plgincant load startup library'! Any advice would be

[PD] MIDI messages priority

2011-05-12 Thread EWOCprojects
Hello, first mail here. I am working on a video mixer with effects using pdp and pidip. It consists of four parts each running a separate instance of pdextended 0.42.5 each on one core of my quadcore laptop Linux system. When one of the cores, running several video effects on a pdp stream,

Re: [PD] pd-gem, png and win7

2011-05-12 Thread palmieri, ricardo
thx in advance for the tips guys. i will test this option saturday morning. i send new about the test.] thx again palm 2011/5/12 chris clepper cgclep...@gmail.com Try opening the file with pix_film. Quicktime will sometimes open still images as one frame movies. On Thu, May 12, 2011 at