Re: [PD] file format for GEM

2013-02-28 Thread news
Hello!what video codec are you using?in my experience, a big issue when playing back video with gem,comes from the codecs and container, resulting in extreme differences in cpu-load.i found, that mov-container work way better than avi-container, even thoughthe same codec is used and packed in the

Re: [PD] bang vs empty list

2013-02-28 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 i guess i'm missing something, but... On 2013-02-28 00:38, Charles Z Henry wrote: Each class has methods that can be looked up by symbol. At some point after the class has been created, you could check the class has no bang method, and if so, add

Re: [PD] bang vs empty list

2013-02-28 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-02-26 02:17, Jonathan Wilkes wrote: Seems like for any object that doesn't have a bang method nor list method, an empty list silently gets discarded. [...] Is there a way to fix this? sure :-) the default list method will try to do

[PD] wireless audio from Pd to PA system

2013-02-28 Thread katja
For a wearable live performance computer, I am looking into the options of sending wireless audio from Pd to a PA sound system and other listeners. In a first experiment I've tried a Linex FM transmitter. Audio quality is good enough, and FM transmitters do not introduce latency. This option is

[PD] create/access udp sockets from within pd

2013-02-28 Thread Matthias Blau
Hi list, is there a way in pd to send/receive udp packets via sockets? The problem at hand is to control an Outline ET250-3D turntable from within pd. This turntable can be controlled via udp, which works in principle by using mrpeach's udpsend. Unfortunately, the table responds to a

Re: [PD] file format for GEM

2013-02-28 Thread Cyrille Henry
Le 27/02/2013 20:19, Stephan Elliot Perez a écrit : What is a shader, and how do I use it? see all exemple in directory 10.glsl cheers c On Wed, Feb 27, 2013 at 7:25 PM, Cyrille Henry c...@chnry.net mailto:c...@chnry.net wrote: Le 27/02/2013 19:17, Stephan Elliot Perez a écrit :

Re: [PD] wireless audio from Pd to PA system (katja)

2013-02-28 Thread richard duckworth
Hi Katja one of these would do it - check with Thomann tech support for gain issues (these are Instrument Level input) They should be fine however as active guitar pickups (like heavy style EMG pickups) output quite high levels. These type of wireless systems tend to be very rugged, have

Re: [PD] create/access udp sockets from within pd

2013-02-28 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-02-28 14:57, Matthias Blau wrote: Hi list, is there a way in pd to send/receive udp packets via sockets? The problem at hand is to control an Outline ET250-3D turntable from within pd. This turntable can be controlled via udp, which

Re: [PD] create/access udp sockets from within pd

2013-02-28 Thread Matthias Blau
checkout iemnet's [udpclient]. already have tried that - without success. I only get udpclient:status: sent 4, nothing else. If I understand it correctly, udpclient listens on the specified port as well, so if the remote udp server gets the request, say on port 6667 and answers on another

Re: [PD] bang vs empty list

2013-02-28 Thread Ivica Ico Bukvic
How about further expanding trigger to tolerate a-s by simply taking the very first argument if the first argument is not type descriptor? See attached. e.g. [foo | [t s] | [print] would output foo. foo bar-outputs foo bar foo-outputs bar --- x_connective.c.orig 2013-02-28

[PD] Simple Kalman filter

2013-02-28 Thread Joel Matthys
I just completed a very simple 1D Kalman filter Pd external. I haven't really done any documentation on it, but it seems pretty robust for cleaning up 1D sensor inputs. The source is here: https://github.com/jwmatthys/kalman-pd Joel ___

Re: [PD] bang vs empty list

2013-02-28 Thread IOhannes m zmölnig
On 02/28/2013 19:34, Ivica Ico Bukvic wrote: How about further expanding trigger to tolerate a-s by simply taking the very first argument if the first argument is not type descriptor? that's what i was proposing, though i used terminology which i think is more common, e.g. selector instead of

Re: [PD] [announce] [pd-fileutils] released, a command-line tool for managing pd files

2013-02-28 Thread Hans-Christoph Steiner
Very nice :) I'd love to see full-on Pd patching in the browser :) .hc On 02/28/2013 02:02 AM, s p wrote: Sorry for the spam ... problems with gmail and html, the url is : http://sebpiq.github.com/pd-fileutils/?gist=GISTID 2013/2/28 s p seb...@gmail.com oops, ... I meant : 2) Go

[PD] check this out

2013-02-28 Thread Simon Iten
https://getmyo.com ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] bang vs empty list

2013-02-28 Thread Ivica Bukvic
This is for pd-l2ork, but should be near identical to regular. Pd-l2ork's trigger is also capable of static values like Max's, so this may be the discrepancy in source. On Feb 28, 2013 2:29 PM, IOhannes m zmölnig zmoel...@iem.at wrote: On 02/28/2013 19:34, Ivica Ico Bukvic wrote: How about

[PD] SP-Brazil Meeting

2013-02-28 Thread Alexandre Torres Porres
Hi there, we're starting to organize some meetings on art software/hardware much like in the sense of the Patching Circles here announced, but not only devoted to patching like in Pd/Max, thus including text coding like Supercolider and also other environments like Processing and Arduino, etc.

Re: [PD] Simple Kalman filter

2013-02-28 Thread Charles Z Henry
Hey Joel I was very interested to see your implementation. It's drastically simpler than I thought it would be. Well, you did mention it was simple :) However, I thought the math was pretty expensive to do and complex to program. I like the approach generally--you have parameters for the

Re: [PD] Simple Kalman filter

2013-02-28 Thread Joel Matthys
Well, understanding the math of a Kalman filter was way beyond my pay grade, but based on the description in http://bilgin.esme.org/BitsBytes/KalmanFilterforDummies.aspx, a 1d implementation reduces the complexity considerably. According to this guide, we can assume simple float values for most of

Re: [PD] bang vs empty list

2013-02-28 Thread Ivica Ico Bukvic
BTW, the only regression with this is that [select] object complains it does not understand bang. I've patched it so that when it receives a bang it redirects it to sel1_symbol and sel2_symbol with a gensym(bang). This also means that [sel b] would not work for bangs, but [sel bang] will. I

Re: [PD] check this out

2013-02-28 Thread i go bananas
just cos there's no description, i'll add it here: it's a muscle sensor that can be used for gestural control. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

[PD] convert an image into a string of characters

2013-02-28 Thread ronni montoya
Hi, i was wondering how can i convert an image into a string of characters in pd? Is there is an easy way of doing this? cheers R. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] convert an image into a string of characters

2013-02-28 Thread IOhannes m zmölnig
On 03/01/2013 05:46, ronni montoya wrote: Hi, i was wondering how can i convert an image into a string of characters in pd? Is there is an easy way of doing this? what does convert an image into a string mean? you can load the image with mrpeach's [binfile] (or try loading it as a raw audio

Re: [PD] create/access udp sockets from within pd

2013-02-28 Thread IOhannes m zmölnig
On 02/28/2013 17:33, Matthias Blau wrote: checkout iemnet's [udpclient]. already have tried that - without success. I only get udpclient:status: sent 4, nothing else. If I understand it correctly, udpclient listens on the specified port as well, so if the remote udp server gets the