Re: [PD] TCP/IP communication from the unix server to the Pure Data

2013-03-19 Thread fls
First at all, you don't need to swap byte endianness just because you are sending it to the network. You have to put in the network format just the header data like port and IP. The network devices read the header but don't use to touch the data section of the packet where your samples will be.

Re: [PD] MobMuPlat for Ipad and expr~ woes

2013-03-19 Thread Roman Haefeli
On Mon, 2013-03-18 at 23:15 +, Pagano, Patrick wrote: here's one: [expr~ if($f2==0, $v1, 0); if ($f2==0, $v1) ] Does not instantiate. There is an expression missing for the second if statement. Roman ___ Pd-list@iem.at mailing list

Re: [PD] [GEM] pix_record .mov files and codecs

2013-03-19 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-03-18 21:31, J Oliver wrote: That's great, just not documented in the help file. It actually tells you it will be printed int he console: Inlet 1: codeclist: enumerate a list of available codecs to the pd-console There is no

Re: [PD] [PD-announce] Pd-extended 0.43.4 released!

2013-03-19 Thread olsen
Hi m Jep we've been working with the 64bit version - thanks for pointing this out! ΓΈ On 03/18/2013 04:58 PM, me.grimm wrote: hi olsen did you install the 64bit version of pd-extended? At the moment Gem is broken in that version. Try the 32bit version. m On Mon, Mar 18, 2013 at 11:43 AM,

[PD] [GEM] pix_write numbering

2013-03-19 Thread Fero Kiraly
Hi all, why is pix_write numbering files like this ? : 0 1 2 ... 00253 ... and pix_multiimage is supposed to read files with 'clear' numbering like this: 0 1 2 .. 256 in this situation is a little bit complicated to write and read the shots.. I solve situation with renaming file

Re: [PD] [GEM] pix_write numbering

2013-03-19 Thread Antoine Villeret
Hi, I totally agree with you Fero, I experienced the same difficulty to use images written with pix_write in pix_multiimage. I made a script to rename the files. But it could good to have an option like 'pix_write_naming_style' in pix_multiimage which can make both working together, isn't it ?

Re: [PD] Expression challenge 2013

2013-03-19 Thread Pagano, Patrick
Roman Can you explain to me what this awesome-ness you have created does? I am assuming it's a expr~ converter, but what is the proper way to deploy this? I assume i can use purepd in MobMuplat since it with be just abstractions? please, more info and thanks in advance for this! pp

[PD] pix_share_write error

2013-03-19 Thread Antoine Villeret
hi, i'm experiencing some strange behavior with pix_share_write/read sometimes i get this error when setting pix_share_write : couldn't get shm_id: error 0 but i couldn't reproduce this, it seems it happens when a patch with pix_share_write crashes (due to errors in a V4L2 device) after

Re: [PD] Expression challenge 2013

2013-03-19 Thread Roman Haefeli
On Die, 2013-03-19 at 14:55 +, Pagano, Patrick wrote: Roman Can you explain to me what this awesome-ness you have created does? I read what the formula in [expr~ ] does and translated it to a subpatch. I am assuming it's a expr~ converter, but what is the proper way to deploy this?

Re: [PD] Expression challenge 2013

2013-03-19 Thread Frank Barknecht
Hi, On Tue, Mar 19, 2013 at 02:55:24PM +, Pagano, Patrick wrote: Can you explain to me what this awesome-ness you have created does? I am assuming it's a expr~ converter, but what is the proper way to deploy this? That would be cool, but Roman just used a subpatch and patched the inside

Re: [PD] Expression challenge 2013

2013-03-19 Thread Pagano, Patrick
I'm not sure how i would include this in my patch. expr~ expr has always been a little difficult for me so i am seeking a more remedial explanation for what roman has made. It looks elegant but i am unsure how to include this into the patch. i will crak it open and share it with you guys if you

Re: [PD] Lanboc-LCX w/ Pd

2013-03-19 Thread Alexandros Drymonitis
Eventually I'm using the Max examples that come along with the LCedit+ software, and communicate between Max and Pd with [udpreceive] (I'm using serial communication with the lanbox). Anyway this is for an urgent deadline, I'll probably use and arduino version later on. On Mon, Mar 18, 2013 at

[PD] pix_record file size limit

2013-03-19 Thread Jaime Oliver
Hello everyone, I am using pix_record to encode files in codec 23 and I cannot get a filesize bigger than 4294967295 bytes or 4.29 GB. The files by the way are unusable after this size and they just won't play in regular video players. Can some one explain why this happens and if there is a

Re: [PD] Lanboc-LCX w/ Pd

2013-03-19 Thread dreamer
On Tue, Mar 19, 2013 at 6:58 PM, Alexandros Drymonitis adr...@gmail.comwrote: Eventually I'm using the Max examples that come along with the LCedit+ software, and communicate between Max and Pd with [udpreceive] (I'm using serial communication with the lanbox). Anyway this is for an urgent

Re: [PD] pix_record file size limit

2013-03-19 Thread Jaime Oliver
If this is of any help, this happens at around 14000 frames or 7 minutes and 45 seconds... J On Tue, Mar 19, 2013 at 2:12 PM, Jaime Oliver jaime.oliv...@gmail.comwrote: Hello everyone, I am using pix_record to encode files in codec 23 and I cannot get a filesize bigger than 4294967295 bytes

Re: [PD] [GEM] pix_write numbering

2013-03-19 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 2013/3/19 Fero Kiraly fero.kir...@gmail.com why is pix_write numbering files like this ? : 0 1 2 ... 00253 ... because it makes it easier to sort files alphabetically. and pix_multiimage is supposed to read files with 'clear'

Re: [PD] pix_record file size limit

2013-03-19 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-03-19 19:12, Jaime Oliver wrote: Hello everyone, I am using pix_record to encode files in codec 23 and I what is codec 23? [codeclist( will enumerate the codecs installed on your system. the ID might change between systems. cannot get a

Re: [PD] Lanboc-LCX w/ Pd

2013-03-19 Thread Alexandros Drymonitis
Well, they've built a couple of externals specifically for communication between Max and the Lanbox, and honestly, at the point I can't bother, so I'll take the easy route... On Tue, Mar 19, 2013 at 8:15 PM, dreamer drea...@puikheid.nl wrote: On Tue, Mar 19, 2013 at 6:58 PM, Alexandros

Re: [PD] pix_record file size limit

2013-03-19 Thread J Oliver
what is codec 23? [codeclist( will enumerate the codecs installed on your system. the ID might change between systems. raw RGB uncompressed. cannot get a filesize bigger than 4294967295 bytes or 4.29 GB. The files by looks like a 4GB file size limitiation. probably a bug in

Re: [PD] pix_record file size limit

2013-03-19 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-03-19 20:10, J Oliver wrote: what is codec 23? [codeclist( will enumerate the codecs installed on your system. the ID might change between systems. raw RGB uncompressed. cannot get a filesize bigger than 4294967295 bytes or 4.29 GB.

Re: [PD] pix_record file size limit

2013-03-19 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-03-19 19:12, Jaime Oliver wrote: Hello everyone, I am using pix_record to encode files in codec 23 and I cannot get a filesize bigger than 4294967295 bytes or 4.29 GB. The files by the way are unusable after this size and they just won't

Re: [PD] pix_record file size limit

2013-03-19 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2013-03-19 20:29, IOhannes m zmoelnig wrote: and just to be sure: can these files be played with Gem? can they be played with lqtplay? does Gem stop recording, once the filesize is that big? i just ran a quick test recording 17245 frames of a

Re: [PD] Large File Support on Linux

2013-03-19 Thread Charles Goyard
Hi, I am in favour of breaking binary compatibility and keeping the code simple. People that compile their externals themselves can understand and cope with it. Other people mostly won't notice. My intuition is that if the LFS project was unable to provide a transparent API in the first place,

Re: [PD] using kinect in ubuntu 12.04 and pd-extended 0.43.4

2013-03-19 Thread tristan cordier
Sorry, I forgot to add that the kinect is actually working properly, tested on another computer, with ubuntu 12.04 (not ubuntu studio 12.04). 2013/3/19 tristan cordier tristan.cord...@gmail.com Hello everyone, I am trying to use a kinect sensor in pure data using pix_freenect. I followed

[PD] [pd open $1 $2{ from relative path without getdir

2013-03-19 Thread me.grimm
I was just looking at romans old post: http://www.mail-archive.com/pd-list@iem.at/msg04869.html did this ever get fixed? In the help-pd help browser-pd msg-msg_and_pd-open_close.pd i see: Sometimes you can get relative paths (./, ../, etc.) to work, but usually not. I don't know why... the

Re: [PD] [pd open $1 $2{ from relative path without getdir

2013-03-19 Thread Roman Haefeli
On Die, 2013-03-19 at 16:59 -0400, me.grimm wrote: I was just looking at romans old post: http://www.mail-archive.com/pd-list@iem.at/msg04869.html did this ever get fixed? In the help-pd help browser-pd msg-msg_and_pd-open_close.pd i see: Sometimes you can get relative paths (./, ../,