Re: [PD] two webcam in gem

2010-08-24 Thread IOhannes m zmoelnig
On 2010-08-24 21:51, Ricardo Brazileiro wrote:
> hi all,
> 
> How can I use two webcam in Gem to tracking (pix_blob) ?

use 2 [pix_video] objects.

> 
> Is it possible?

yes.

> 
> I have two webcam, /dev/video0 and /dev/video1. I tested using pix_video but
> I only change the device in the same window.

the window has nothing to do with either the video grabbing nor the
video analysis.
you can grab video, run [pix_blob] on it and still only see a teapot :-)

anyhow: pix_blob will only ever work on single pixes ("frames").
if you want to use 2 cameras (e.g. to enlargen the viewing angle), you
basically have 2 possibilities:
- merge the two video streams into one, by using whatever compositing
techniques you are easy with. a simple one would be to display both
pixes (probably in a not-displayed [gemframebuffer]), and use [pix_snap]
to grab the composited image). then run whatever analysis you want on
the new big pix.

- do analysis on each stream and then merge the results

gfmasdr
IOhannes



smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] pidip

2010-08-24 Thread Willy WOLFF

I would like to compile pidip
http://pure-data.svn.sourceforge.net/viewvc/pure-data/trunk/externals/pidip/

We must use automake 1.4, see in header of aclocal.m4

But when i do autoreconf, i have "aclocal: configure.ac: 0: macro 
`AM_PATH_GTK' not found in library" message.


pidip use gtk 1 exclusively?

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] project help and suggestions

2010-08-24 Thread Martin Eckart
Hi all,

I'm working on a project that I'd like some technical input on in order
to make it more efficient than I have it.  For reference I'm working
with PD-Extended on Ubuntu 10.4.

I have a digital camera taking jpeg images at regular (2 or 3 second)
intervals which download automatically to a directory on my laptop
(connected via usb using gphoto2).  I want to load those images into pd
using gem for display onscreen as well as some other analysis.

Now the way I have it right now, each time an image is downloaded a hook
script converts it to 1 frame of mpeg2 video and gets concatenated to
the end of a cumulative mpeg video file.  In pd, I load the video with
pix_film and display it.  This works reasonably well, however, I need to
load the same video again in order to get the most recent images and
that reload makes video playback stutter (not bad but enough to notice).
Does anyone have any suggestions on other ways I could go about this?
Some thoughts I have so far:

1) maybe pix_film has a 'reload' or similar option to just load the
newest frames?
2) maybe there's a way to play it as if it's a streaming video and just
load the newest frames as they come?
3) maybe pix_image is more what I'm looking for?  Forget the encoding to
video and just load each image individually to a buffer?  I think this
can be problematic since there will be hundreds of images and loading
them all to RAM will get too big for my paltry 2gb.

I'm grateful for any of your suggestions.

Cheers,
-martin


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] howto get "pool"

2010-08-24 Thread Thomas Grill

Am 24.08.2010 um 23:55 schrieb Thomas Grill:

> In your flext/buildsys/config-lnx-pd.txt file, there is a line beginning with 
> "UFLAGS +="
> Try adding -DFLEXT_CMEM at the end of this line.
> 

Sorry, it's actually -DFLEXT_USE_CMEM
gr~~~


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] howto get "pool"

2010-08-24 Thread Thomas Grill

Am 24.08.2010 um 19:31 schrieb João Martins:

> Would this issue be exclusive of Linux installations?
> One of my main problems now is not understanding the "portability" issues.

I'm not sure about the exclusiveness, but different OSs handle combined 
namespaces of dynamic libraries in different ways.
 
In your flext/buildsys/config-lnx-pd.txt file, there is a line beginning with 
"UFLAGS +="
Try adding -DFLEXT_CMEM at the end of this line.

gr~~~


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Font weirdness with 0.43test

2010-08-24 Thread Miller Puckette
Long as there's a way to fix a problem I'm having:  in message boxes with
many lines of text, you can easily click on one character and select one above
it... it gets very confusing.  (Fedora 13 out-of-box).

I'm guessing that in the current version the GUI simply tells Pd what size
the font ought to have had instead of the genuine one.  Pd could easily
expand the box to the ought-to size (at least optionally for those wishing
to make cross-platform patches) but should know about the text's actual size
anyway.  To be continued...

cheers
Miller

On Tue, Aug 24, 2010 at 01:21:08AM -0400, Hans-Christoph Steiner wrote:
> 
> On Aug 23, 2010, at 7:01 AM, Frank Barknecht wrote:
> 
> >Hi,
> >
> >On Sat, Aug 21, 2010 at 01:39:08PM -0400, Mathieu Bouchard wrote:
> >>BTW I've been using Pd-Extended's Linux/OSX default font size as the
> >>basis for all my patches for making my last 400 patches or so.
> >
> >I've used Pd vanilla for all my patches so far, with a "10" font-size,
> >whatever that is in pixels. I know, that Pd-extended uses some
> >different
> >layout for several years now, which makes patches look wrong when you
> >load them in Pd vanilla and the other way around. I have not much
> >interest to discuss the differences between vanilla and Pd-x, as I am
> >hoping the two to unify again with the gui-rewrite. So I'm willing to
> >change my preferences to whatever will be the new vanilla, but I'd
> >prefer to not do again that with every release or with every new
> >Courier-like font that pops up on the Internets' Top 10 console font
> >lists and is so much better than the previous ones.
> 
> 
> Unless Miller changes it in the future, Pd 0.43 should have the same
> boxes sizes that Pd-extended has had for a couple versions.  That
> was one of my goals with the GUI rewrite.  Its a bug if that's not
> the case.
> 
> .hc
> 
> 
> 
> 
> The arc of history bends towards justice. - Dr. Martin Luther
> King, Jr.
> 
> 
> 
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management -> 
> http://lists.puredata.info/listinfo/pd-list

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Bang

2010-08-24 Thread Derek Holzer
Awesome. This is the second time I've seen one of these. Bring on more 
Pd cakes! Maybe the next PdCon could have a baking contest instead of 
all those ever-so-exciting academic papers ;-)


D.

On 8/24/10 8:59 AM, Philip Cunningham wrote:

Visiting my family in Scotland, my sister made me an early birthday
present. It's a very tasty, and patchable, cake.



--
::: derek holzer ::: http://macumbista.net :::
---Oblique Strategy # 27:
"Change instrument roles"

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] two webcam in gem

2010-08-24 Thread Ricardo Brazileiro
hi all,

How can I use two webcam in Gem to tracking (pix_blob) ?

Is it possible?

I have two webcam, /dev/video0 and /dev/video1. I tested using pix_video but
I only change the device in the same window.




-- 
ricardo brazileiro
http://rbrazileiro.info
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Opening multiple files

2010-08-24 Thread Jonathan Wilkes
Well, it works in rc5 on winxp and osx.

-Jonathan

--- On Tue, 8/24/10, Hans-Christoph Steiner  wrote:

> From: Hans-Christoph Steiner 
> Subject: Re: [PD] Opening multiple files
> To: "Jonathan Wilkes" 
> Cc: pd-list@iem.at
> Date: Tuesday, August 24, 2010, 7:12 AM
> 
> Have you ever been able to?  I think that's new to
> 0.43
> 
> .hc
> 
> On Aug 22, 2010, at 10:43 PM, Jonathan Wilkes wrote:
> 
> > Hi list,
> >     In pd-extended on hardy I
> cannot open (-o open)
> > multiple files.  For example, if I try to open
> > append-help.pd and array-help.pd I get the following
> error:
> >
> > File "/path/to/help/files/append-help.pd
> array-help.pd" does not
> > exist.
> >
> > I believe I'm using the nightly build: in "About Pd"
> it says Pd
> > version 0.42.5-extended.
> >
> > -Jonathan
> >
> >
> >
> >
> > ___
> > Pd-list@iem.at
> mailing list
> > UNSUBSCRIBE and account-management -> 
> > http://lists.puredata.info/listinfo/pd-list
> 
> 
> 
> 
> 
> 
> All mankind is of one author, and is one volume; when one
> man dies,  
> one chapter is not torn out of the book, but translated
> into a better  
> language; and every chapter must be so translated -John
> Donne
> 
> 
> 


  

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] PD Engine on FPGA

2010-08-24 Thread Christoph Kuhr

Hi,

im planning to build an outboard dsp engine.
the idea is to connect a fpga device via ethernet to an extra 
ethernetcard in a linux rt pc system with an alsa driver using rtnet.

and the dsp core shall be realized as a pd audio engine/objects.

has anyone a clou how to get started with the portation of that engine, 
or if its even possible?


bye
Ck



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] Pd-extended 0.42.5-rc5 on UbuntuStudio 9.10 looking for externals everywhere?

2010-08-24 Thread João Martins
Hi there.

I'm taking my first steps with Pd on Linux and just noticed that unlike my
Mac, where Pd just looks for the externals in their own directory, I'm
getting a huge list, on startup, of obvious failures looking for libraries
and externals everywhere.
Things like this, for every loaded external:

tried ./libdir.l_i386 and failed
tried /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType/libdir.l_i386 and
failed
tried /usr/lib/pd-extended/extra/cyclone/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/Gem/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/zexy/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/creb/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/cxc/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/iemlib/libdir.l_i386 and failed
tried /home/abade/pd-externals/xsample/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/list-abs/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/mapping/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/jmmmp/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/maxlib/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/memento/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/mjlib/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/markex/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/oscx/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/pddp/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/pdogg/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/motex/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/pmpd/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/rradical/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/sigpack/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/pixeltango/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/toxy/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/unauthorized/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/pan/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/smlib/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/hcs/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/ext13/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/ggee/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/flib/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/ekext/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/flatspace/libdir.l_i386 and failed
tried /home/user/pd-externals/pool/libdir.l_i386 and failed
tried /home/user/pd-externals/fid_abs_0.3.5_rc1/libdir.l_i386 and failed
tried /home/user/pd-externals/fid_abs_0.3.5_rc1/fid_zones/libdir.l_i386 and
failed
tried /home/user/pd-externals/TUIO_PureData/libdir.l_i386 and failed
tried /home/user/pd-externals/libdir.l_i386 and failed
tried /usr/local/lib/pd-externals/libdir.l_i386 and failed
tried /usr/lib/pd-extended/extra/libdir.l_i386 and failed
tried ./libdir.pd_linux and failed
tried /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType/libdir.pd_linux and
failed
tried /usr/lib/pd-extended/extra/cyclone/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/Gem/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/zexy/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/creb/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/cxc/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/iemlib/libdir.pd_linux and failed
tried /home/abade/pd-externals/xsample/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/list-abs/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/mapping/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/jmmmp/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/maxlib/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/memento/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/mjlib/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/markex/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/oscx/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/pddp/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/pdogg/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/motex/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/pmpd/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/rradical/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/sigpack/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/pixeltango/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/toxy/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/unauthorized/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/pan/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/smlib/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/hcs/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/ext13/libdir.pd_linux and failed
tried /usr/lib/pd-extended/extra/ggee/libdir.pd_linux and failed
tried /usr/lib/

Re: [PD] howto get "pool"

2010-08-24 Thread João Martins
Would this issue be exclusive of Linux installations?
One of my main problems now is not understanding the "portability" issues.

I really thank you all for your time and help.

João Martins

No dia 24 de Agosto de 2010 18:23, Thomas Grill  escreveu:

> Oh yes, i remember that issue now... there's a flag called FLEXT_CMEM which
> inhibits overriding the new/delete operators.
> To my knowledge the flag is set by default for versions within the last 3
> years or so. I'll check later to be sure.
> gr~~~
>
> Am 24.08.2010 um 09:25 schrieb IOhannes m zmoelnig:
>
> > On 2010-08-23 22:10, João Martins wrote:
> >> Hi, S. Jensen,
> >>
> >> I'm looking for a way to get "pool" working on a Linux distribution
> (Ubuntu
> >> or Ubuntu Studio are my main goals). I've noticed that you were able to
> >> compile your own Pd-extended and were looking to add "pool" to it.
> >> Did you manage to get "pool" working?
> >> Installing it is the easy bit, I guess (I'm having no problems
> installing
> >> externals in Linux, as I have some experience in Pd), but "pool" that
> works
> >> without any problem in my Mac setup (my main one) appears to be
> incompatible
> >> with Gem on Linux, regardless of GEM version or Linux distro.
> >>
> >
> > have you tried gem-0.92 ?
> >
> > i think there was some conflict with flext and Gem both overriding "new",
> > at least Gem behaves now better.
> >
> > fgmasdr
> > IOhannes
> >
> > ___
> > Pd-list@iem.at mailing list
> > UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
>
>


-- 
João Pedro Martins
música . web design
http://joaomartins.entropiadesign.org
mail: joaomart...@mac.com
skype: joaopsmartins
ichat: joaomartins
msn: joaopsmartins
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Problems with "pool" object

2010-08-24 Thread João Martins
I'm using the one available at http://g.org/ext/beta/linux/pd/
I'll look into the task of compiling it myself.
I use xsample as provided by your site without any problem, and I'm not
using flext, just the externals. Here and on my Mac, where everything works
just fine.

João Martins

No dia 24 de Agosto de 2010 18:21, Thomas Grill  escreveu:

> Hi Joao,
> interestingly i haven't asked before: what versions of flext, pool and
> xsample are you using?
> I'm asking i would always recommend to compile from the svn source - which
> should not be all that daunting. I might not be the right source of comfort
> but i guess there are people here that can easily lead you through the
> process.
> gr~~~
>
> Am 24.08.2010 um 11:30 schrieb João Martins:
>
> Nothing is as simple as it looks, as I'm learning by the minute.
> With the latest release of Pd, turning off Gem does not allow "pool" to
> work properly, and I get exactly the same error message.
> This leads me back to "pool" in itself.
> Compiling all of "flext" really seems a daunting task, but I think I'll
> give it a go, if no one comes up with a better suggestion. ;)
>
> Thank you all.
>
> João Martins
>
> No dia 24 de Agosto de 2010 10:17, João Martins escreveu:
>
>> So, I've tried using a fresher copy of GEM (0.92.3) and not having xsample
>> in the way, and I got apparently the same problem:
>>
>> *** glibc detected *** pdextended: free(): invalid pointer: 0x09c2b864 ***
>> === Backtrace: =
>> /lib/tls/i686/cmov/libc.so.6[0x17b0d1]
>> /lib/tls/i686/cmov/libc.so.6[0x17c7d2]
>> /lib/tls/i686/cmov/libc.so.6(cfree+0x6d)[0x17f8ad]
>>
>> /home/user/pd-externals/pool/pool.pd_linux(_ZN17flext_root_singledlEPv+0x32)[0x89d52b4]
>>
>> /home/user/pd-externals/pool/pool.pd_linux(_ZN12flext_single8AtomList4FreeEv+0x25)[0x89d54d5]
>>
>> /home/user/pd-externals/pool/pool.pd_linux(_ZN12flext_single8AtomListD1Ev+0x28)[0x89d55a0]
>>
>> /home/user/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single12AttrDataCont5clearEv+0x60)[0x89d33a6]
>>
>> /home/abade/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single12AttrDataContD0Ev+0x2a)[0x89d4270]
>>
>> /home/abade/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single4ExitEv+0x7e)[0x89d0694]
>>
>> /home/user/pd-externals/pool/pool.pd_linux(_ZN16flext_obj_single8obj_freeEP9flext_hdr+0x7b)[0x89d2021]
>> pdextended(pd_free+0x17)[0x80b5af7]
>> === Memory map: 
>> 0011-0024e000 r-xp  08:01 11740506   /lib/tls/i686/cmov/
>> libc-2.10.1.so
>> 0024e000-0024f000 ---p 0013e000 08:01 11740506   /lib/tls/i686/cmov/
>> libc-2.10.1.so
>> 0024f000-00251000 r--p 0013e000 08:01 11740506   /lib/tls/i686/cmov/
>> libc-2.10.1.so
>> 00251000-00252000 rw-p 0014 08:01 11740506   /lib/tls/i686/cmov/
>> libc-2.10.1.so
>> 00252000-00255000 rw-p  00:00 0
>> 00255000-00266000 r-xp  08:01 10455586   /usr/lib/libcelt.so.0.0.0
>> 00266000-00267000 r--p 0001 08:01 10455586   /usr/lib/libcelt.so.0.0.0
>> 00267000-00268000 rw-p 00011000 08:01 10455586   /usr/lib/libcelt.so.0.0.0
>> 00268000-0026f000 r-xp  08:01 10454666   /usr/lib/libSM.so.6.0.0
>> 0026f000-0027 r--p 6000 08:01 10454666   /usr/lib/libSM.so.6.0.0
>> 0027-00271000 rw-p 7000 08:01 10454666   /usr/lib/libSM.so.6.0.0
>> 00271000-00274000 r-xp  08:01 11722789   /lib/libuuid.so.1.3.0
>> 00274000-00275000 r--p 2000 08:01 11722789   /lib/libuuid.so.1.3.0
>> 00275000-00276000 rw-p 3000 08:01 11722789   /lib/libuuid.so.1.3.0
>> 00276000-00278000 r-xp  08:01 11740517   /lib/tls/i686/cmov/
>> libdl-2.10.1.so
>> 00278000-00279000 r--p 1000 08:01 11740517   /lib/tls/i686/cmov/
>> libdl-2.10.1.so
>> 00279000-0027a000 rw-p 2000 08:01 11740517   /lib/tls/i686/cmov/
>> libdl-2.10.1.so
>> 0027a000-002c2000 r-xp  08:01 10455789   /usr/lib/
>> libpulsecommon-0.9.19.so
>> 002c2000-002c3000 r--p 00047000 08:01 10455789   /usr/lib/
>> libpulsecommon-0.9.19.so
>> 002c3000-002c4000 rw-p 00048000 08:01 10455789   /usr/lib/
>> libpulsecommon-0.9.19.so
>> 002c4000-002c8000 r-xp  08:01 10455682   /usr/lib/libXtst.so.6.1.0
>> 002c8000-002c9000 r--p 4000 08:01 10455682   /usr/lib/libXtst.so.6.1.0
>> 002c9000-002ca000 rw-p 5000 08:01 10455682   /usr/lib/libXtst.so.6.1.0
>> 002ca000-0033 r-xp  08:01 10455079
>> /usr/lib/libsndfile.so.1.0.20
>> 0033-00331000 r--p 00065000 08:01 10455079
>> /usr/lib/libsndfile.so.1.0.20
>> 00331000-00332000 rw-p 00066000 08:01 10455079
>> /usr/lib/libsndfile.so.1.0.20
>> 00332000-00336000 rw-p  00:00 0
>> 00336000-00344000 r-xp  08:01 10452994   /usr/lib/libXext.so.6.4.0
>> 00344000-00345000 r--p d000 08:01 10452994   /usr/lib/libXext.so.6.4.0
>> 00345000-00346000 rw-p e000 08:01 10452994   /usr/lib/libXext.so.6.4.0
>> 00346000-00359000 r-xp  08:01 11740525   /lib/tls/i686/cmov/
>> libnsl-2.10.1.so
>> 00359000-0035a000 r--p 00012000 08:01 11740525   /lib/tls/i686/cmov/
>> libnsl-2.10.1.so
>> 0035a000-0035b00

Re: [PD] howto get "pool"

2010-08-24 Thread Thomas Grill
Oh yes, i remember that issue now... there's a flag called FLEXT_CMEM which 
inhibits overriding the new/delete operators.
To my knowledge the flag is set by default for versions within the last 3 years 
or so. I'll check later to be sure.
gr~~~

Am 24.08.2010 um 09:25 schrieb IOhannes m zmoelnig:

> On 2010-08-23 22:10, João Martins wrote:
>> Hi, S. Jensen,
>> 
>> I'm looking for a way to get "pool" working on a Linux distribution (Ubuntu
>> or Ubuntu Studio are my main goals). I've noticed that you were able to
>> compile your own Pd-extended and were looking to add "pool" to it.
>> Did you manage to get "pool" working?
>> Installing it is the easy bit, I guess (I'm having no problems installing
>> externals in Linux, as I have some experience in Pd), but "pool" that works
>> without any problem in my Mac setup (my main one) appears to be incompatible
>> with Gem on Linux, regardless of GEM version or Linux distro.
>> 
> 
> have you tried gem-0.92 ?
> 
> i think there was some conflict with flext and Gem both overriding "new",
> at least Gem behaves now better.
> 
> fgmasdr
> IOhannes
> 
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management -> 
> http://lists.puredata.info/listinfo/pd-list


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Problems with "pool" object

2010-08-24 Thread Thomas Grill
Hi Joao,
interestingly i haven't asked before: what versions of flext, pool and xsample 
are you using?
I'm asking i would always recommend to compile from the svn source - which 
should not be all that daunting. I might not be the right source of comfort but 
i guess there are people here that can easily lead you through the process.
gr~~~

Am 24.08.2010 um 11:30 schrieb João Martins:

> Nothing is as simple as it looks, as I'm learning by the minute.
> With the latest release of Pd, turning off Gem does not allow "pool" to work 
> properly, and I get exactly the same error message.
> This leads me back to "pool" in itself.
> Compiling all of "flext" really seems a daunting task, but I think I'll give 
> it a go, if no one comes up with a better suggestion. ;)
> 
> Thank you all.
> 
> João Martins
> 
> No dia 24 de Agosto de 2010 10:17, João Martins  
> escreveu:
> So, I've tried using a fresher copy of GEM (0.92.3) and not having xsample in 
> the way, and I got apparently the same problem:
> 
> *** glibc detected *** pdextended: free(): invalid pointer: 0x09c2b864 ***
> === Backtrace: =
> /lib/tls/i686/cmov/libc.so.6[0x17b0d1]
> /lib/tls/i686/cmov/libc.so.6[0x17c7d2]
> /lib/tls/i686/cmov/libc.so.6(cfree+0x6d)[0x17f8ad]
> /home/user/pd-externals/pool/pool.pd_linux(_ZN17flext_root_singledlEPv+0x32)[0x89d52b4]
> /home/user/pd-externals/pool/pool.pd_linux(_ZN12flext_single8AtomList4FreeEv+0x25)[0x89d54d5]
> /home/user/pd-externals/pool/pool.pd_linux(_ZN12flext_single8AtomListD1Ev+0x28)[0x89d55a0]
> /home/user/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single12AttrDataCont5clearEv+0x60)[0x89d33a6]
> /home/abade/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single12AttrDataContD0Ev+0x2a)[0x89d4270]
> /home/abade/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single4ExitEv+0x7e)[0x89d0694]
> /home/user/pd-externals/pool/pool.pd_linux(_ZN16flext_obj_single8obj_freeEP9flext_hdr+0x7b)[0x89d2021]
> pdextended(pd_free+0x17)[0x80b5af7]
> === Memory map: 
> 0011-0024e000 r-xp  08:01 11740506   
> /lib/tls/i686/cmov/libc-2.10.1.so
> 0024e000-0024f000 ---p 0013e000 08:01 11740506   
> /lib/tls/i686/cmov/libc-2.10.1.so
> 0024f000-00251000 r--p 0013e000 08:01 11740506   
> /lib/tls/i686/cmov/libc-2.10.1.so
> 00251000-00252000 rw-p 0014 08:01 11740506   
> /lib/tls/i686/cmov/libc-2.10.1.so
> 00252000-00255000 rw-p  00:00 0 
> 00255000-00266000 r-xp  08:01 10455586   /usr/lib/libcelt.so.0.0.0
> 00266000-00267000 r--p 0001 08:01 10455586   /usr/lib/libcelt.so.0.0.0
> 00267000-00268000 rw-p 00011000 08:01 10455586   /usr/lib/libcelt.so.0.0.0
> 00268000-0026f000 r-xp  08:01 10454666   /usr/lib/libSM.so.6.0.0
> 0026f000-0027 r--p 6000 08:01 10454666   /usr/lib/libSM.so.6.0.0
> 0027-00271000 rw-p 7000 08:01 10454666   /usr/lib/libSM.so.6.0.0
> 00271000-00274000 r-xp  08:01 11722789   /lib/libuuid.so.1.3.0
> 00274000-00275000 r--p 2000 08:01 11722789   /lib/libuuid.so.1.3.0
> 00275000-00276000 rw-p 3000 08:01 11722789   /lib/libuuid.so.1.3.0
> 00276000-00278000 r-xp  08:01 11740517   
> /lib/tls/i686/cmov/libdl-2.10.1.so
> 00278000-00279000 r--p 1000 08:01 11740517   
> /lib/tls/i686/cmov/libdl-2.10.1.so
> 00279000-0027a000 rw-p 2000 08:01 11740517   
> /lib/tls/i686/cmov/libdl-2.10.1.so
> 0027a000-002c2000 r-xp  08:01 10455789   
> /usr/lib/libpulsecommon-0.9.19.so
> 002c2000-002c3000 r--p 00047000 08:01 10455789   
> /usr/lib/libpulsecommon-0.9.19.so
> 002c3000-002c4000 rw-p 00048000 08:01 10455789   
> /usr/lib/libpulsecommon-0.9.19.so
> 002c4000-002c8000 r-xp  08:01 10455682   /usr/lib/libXtst.so.6.1.0
> 002c8000-002c9000 r--p 4000 08:01 10455682   /usr/lib/libXtst.so.6.1.0
> 002c9000-002ca000 rw-p 5000 08:01 10455682   /usr/lib/libXtst.so.6.1.0
> 002ca000-0033 r-xp  08:01 10455079   /usr/lib/libsndfile.so.1.0.20
> 0033-00331000 r--p 00065000 08:01 10455079   /usr/lib/libsndfile.so.1.0.20
> 00331000-00332000 rw-p 00066000 08:01 10455079   /usr/lib/libsndfile.so.1.0.20
> 00332000-00336000 rw-p  00:00 0 
> 00336000-00344000 r-xp  08:01 10452994   /usr/lib/libXext.so.6.4.0
> 00344000-00345000 r--p d000 08:01 10452994   /usr/lib/libXext.so.6.4.0
> 00345000-00346000 rw-p e000 08:01 10452994   /usr/lib/libXext.so.6.4.0
> 00346000-00359000 r-xp  08:01 11740525   
> /lib/tls/i686/cmov/libnsl-2.10.1.so
> 00359000-0035a000 r--p 00012000 08:01 11740525   
> /lib/tls/i686/cmov/libnsl-2.10.1.so
> 0035a000-0035b000 rw-p 00013000 08:01 11740525   
> /lib/tls/i686/cmov/libnsl-2.10.1.so
> 0035b000-0035d000 rw-p  00:00 0 
> 0035d000-003ab000 r-xp  08:01 10453276   /usr/lib/libFLAC.so.8.2.0
> 003ab000-003ac000 r--p 0004d000 08:01 10453276   /usr/lib/libFLAC.so.8.2.0
> 003ac000-003ad000 rw-p 0004e000 08:01 10453276   /usr/lib/libFLAC.so.8.2.0
> 003ad000-003b2000 r-xp  08:01 10453274   /usr/lib/libogg.so.0.6.0
> 003b2000-003b3000

Re: [PD] newline in comment

2010-08-24 Thread Hans-Christoph Steiner


Try using the [comment] object from cyclone.  You can set its width.

.hc

On Aug 21, 2010, at 6:47 AM, tim vets wrote:


Hi list,
Is there a way to put newlines in comments that stay there after  
closing and reopening a patch?

I am unable to create a comment like:
"first line
second line
third line"
without it becoming:
"first line second line third line"
after reopening the patch.
I pasted some text from elsewhere and don't want to have to break it  
up into 50 separate comments.

thanks,
Tim

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list








'You people have such restrictive dress for women,’ she said, hobbling  
away in three inch heels and panty hose to finish out another pink- 
collar temp pool day.  - “Hijab Scene #2", by Mohja Kahf




___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Bang

2010-08-24 Thread Hans-Christoph Steiner


Awesome!  She did a bang-up job!  (sorry couldn't resist)

.hc

On Aug 24, 2010, at 2:59 AM, Philip Cunningham wrote:


Visiting my family in Scotland, my sister made me an early birthday
present. It's a very tasty, and patchable, cake.
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list








"Free software means you control what your computer does. Non-free  
software means someone else controls that, and to some extent controls  
you." - Richard M. Stallman




___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] small patch for [pdp_mix]

2010-08-24 Thread Hans-Christoph Steiner


On Aug 24, 2010, at 6:08 AM, ydego...@gmail.com wrote:


ahoj,

Hans-Christoph Steiner wrote:


From what I've seen, PDP is kind of abandoned.




frozen is the word, not abandonned...

anyway anybody can commit to it,
we don't need just one maintainer..
if that's important for you,
just commit it..
i have no time now



A maintainer isn't about permissions, there are many people who can  
commit.  A maintainer should understand the code somewhat and know how  
to test patches before committing them.  And the maintainer should  
follow up if new code broke something.  As far as I can see, there is  
no one doing that for PDP.


I could easily commit code to PDP, but I do not know how to test the  
code well, nor do I know what might break when new patches are applied.


.hc




You can't steal a gift. Bird gave the world his music, and if you can  
hear it, you can have it. - Dizzy Gillespie





___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Bang

2010-08-24 Thread Husk 00
On Tue, Aug 24, 2010 at 8:59 AM, Philip Cunningham  wrote:

> Visiting my family in Scotland, my sister made me an early birthday
>

I love your family :)
cheers
-- 
when Art become pratical
we call it technology.

When Technology become useless
we call it Art

www.estereotips.net
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Bang

2010-08-24 Thread Pedro Lopes
genious.

On Tue, Aug 24, 2010 at 10:24 AM, Andrew Faraday wrote:

>  seconded...
>
>
> --
> Date: Tue, 24 Aug 2010 10:22:37 +0300
> From: ypat...@gmail.com
> To: pcunningham...@googlemail.com
> CC: pd-list@iem.at
> Subject: Re: [PD] Bang
>
>
> wow...
>
> is your sister married??
> (just kiddin'..)
>
> alabala
>
> On 24 August 2010 09:59, Philip Cunningham 
> wrote:
>
> Visiting my family in Scotland, my sister made me an early birthday
> present. It's a very tasty, and patchable, cake.
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
>
>
>
>
> --
> ypatios
>
> ___ Pd-list@iem.at mailing
> list UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
>
>


-- 
Pedro Lopes (ongoing MSc)
contact: pedro.lo...@ist.utl.pt
website: http://web.ist.utl.pt/Pedro.Lopes
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Problems with "pool" object

2010-08-24 Thread Bryan Jurish
moin João,

Not that I think this will be of much help, but when I had similar
flext-related crashes ("free(): invalid pointer") in the past, it turned
out to be due to missing initialization code in the constructor.  I
really don't believe [pool] suffers from this problem (we would have
heard about it before now), but cf. my signature :-/

Anyhoo, I found it helped (but didn't solve all problems) to compile the
flext externals in "static debug" mode -- of course, this causes some
memory bloat and slows things down a bit, but it might get you running
on your target architecture...

marmosets,
Bryan

On 2010-08-24 11:30:30, João Martins  appears to
have written:
> Nothing is as simple as it looks, as I'm learning by the minute.
> With the latest release of Pd, turning off Gem does not allow "pool" to
> work properly, and I get exactly the same error message.
> This leads me back to "pool" in itself.
> Compiling all of "flext" really seems a daunting task, but I think I'll
> give it a go, if no one comes up with a better suggestion. ;)
> 
> Thank you all.
> 
> João Martins

-- 
Bryan Jurish   "There is *always* one more bug."
jur...@ling.uni-potsdam.de  -Lubarsky's Law of Cybernetic Entomology


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


[PD] [PD-announce] I C::ntr::l Nature Live Media Performance at Flussi Festival, Italy

2010-08-24 Thread Marco Donnarumma
Dear all,
I’ll be performing the Pd-based, audiovisual concert for augmented bass
guitar and butterfly I C::ntr::l
Naturev.3.0 on 26th
August at Flussi Festival for New Media Arts, Avellino, Italy.

I’ll share the stage with Menion (La Bèl Netlabel), Mokira (Raster-Noton /
Milleplateaux / Type Records) and Thomas Fehlmann (Kompakt / Plug Research).
I suggest to check the complete program
on the festival website as it
includes many other interesting artists such
as Domenico Sciajno, Murcof, Asferico, Lukid and Mount Kimbie.

Drop me a line if you happened to be around, I'd be delighted to meet up for
a drink.

Best,




-- 
Marco Donnarumma aka TheSAD
Independent New Media Arts Professional, Performer, Teacher - Edinburgh, UK


PORTFOLIO: http://marcodonnarumma.com
LAB: http://www.thesaddj.com | http://cntrl.sourceforge.net |
http://www.flxer.net
EVENT: http://www.liveperformersmeeting.net
___
Pd-announce mailing list
pd-annou...@iem.at
http://lists.puredata.info/listinfo/pd-announce
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] small patch for [pdp_mix]

2010-08-24 Thread ydego...@gmail.com

ahoj,

Hans-Christoph Steiner wrote:


From what I've seen, PDP is kind of abandoned.




frozen is the word, not abandonned...

anyway anybody can commit to it,
we don't need just one maintainer..
if that's important for you,
just commit it..
i have no time now


ciao,
sevy

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Problems with "pool" object

2010-08-24 Thread João Martins
Nothing is as simple as it looks, as I'm learning by the minute.
With the latest release of Pd, turning off Gem does not allow "pool" to work
properly, and I get exactly the same error message.
This leads me back to "pool" in itself.
Compiling all of "flext" really seems a daunting task, but I think I'll give
it a go, if no one comes up with a better suggestion. ;)

Thank you all.

João Martins

No dia 24 de Agosto de 2010 10:17, João Martins escreveu:

> So, I've tried using a fresher copy of GEM (0.92.3) and not having xsample
> in the way, and I got apparently the same problem:
>
> *** glibc detected *** pdextended: free(): invalid pointer: 0x09c2b864 ***
> === Backtrace: =
> /lib/tls/i686/cmov/libc.so.6[0x17b0d1]
> /lib/tls/i686/cmov/libc.so.6[0x17c7d2]
> /lib/tls/i686/cmov/libc.so.6(cfree+0x6d)[0x17f8ad]
>
> /home/user/pd-externals/pool/pool.pd_linux(_ZN17flext_root_singledlEPv+0x32)[0x89d52b4]
>
> /home/user/pd-externals/pool/pool.pd_linux(_ZN12flext_single8AtomList4FreeEv+0x25)[0x89d54d5]
>
> /home/user/pd-externals/pool/pool.pd_linux(_ZN12flext_single8AtomListD1Ev+0x28)[0x89d55a0]
>
> /home/user/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single12AttrDataCont5clearEv+0x60)[0x89d33a6]
>
> /home/abade/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single12AttrDataContD0Ev+0x2a)[0x89d4270]
>
> /home/abade/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single4ExitEv+0x7e)[0x89d0694]
>
> /home/user/pd-externals/pool/pool.pd_linux(_ZN16flext_obj_single8obj_freeEP9flext_hdr+0x7b)[0x89d2021]
> pdextended(pd_free+0x17)[0x80b5af7]
> === Memory map: 
> 0011-0024e000 r-xp  08:01 11740506   /lib/tls/i686/cmov/
> libc-2.10.1.so
> 0024e000-0024f000 ---p 0013e000 08:01 11740506   /lib/tls/i686/cmov/
> libc-2.10.1.so
> 0024f000-00251000 r--p 0013e000 08:01 11740506   /lib/tls/i686/cmov/
> libc-2.10.1.so
> 00251000-00252000 rw-p 0014 08:01 11740506   /lib/tls/i686/cmov/
> libc-2.10.1.so
> 00252000-00255000 rw-p  00:00 0
> 00255000-00266000 r-xp  08:01 10455586   /usr/lib/libcelt.so.0.0.0
> 00266000-00267000 r--p 0001 08:01 10455586   /usr/lib/libcelt.so.0.0.0
> 00267000-00268000 rw-p 00011000 08:01 10455586   /usr/lib/libcelt.so.0.0.0
> 00268000-0026f000 r-xp  08:01 10454666   /usr/lib/libSM.so.6.0.0
> 0026f000-0027 r--p 6000 08:01 10454666   /usr/lib/libSM.so.6.0.0
> 0027-00271000 rw-p 7000 08:01 10454666   /usr/lib/libSM.so.6.0.0
> 00271000-00274000 r-xp  08:01 11722789   /lib/libuuid.so.1.3.0
> 00274000-00275000 r--p 2000 08:01 11722789   /lib/libuuid.so.1.3.0
> 00275000-00276000 rw-p 3000 08:01 11722789   /lib/libuuid.so.1.3.0
> 00276000-00278000 r-xp  08:01 11740517   /lib/tls/i686/cmov/
> libdl-2.10.1.so
> 00278000-00279000 r--p 1000 08:01 11740517   /lib/tls/i686/cmov/
> libdl-2.10.1.so
> 00279000-0027a000 rw-p 2000 08:01 11740517   /lib/tls/i686/cmov/
> libdl-2.10.1.so
> 0027a000-002c2000 r-xp  08:01 10455789   /usr/lib/
> libpulsecommon-0.9.19.so
> 002c2000-002c3000 r--p 00047000 08:01 10455789   /usr/lib/
> libpulsecommon-0.9.19.so
> 002c3000-002c4000 rw-p 00048000 08:01 10455789   /usr/lib/
> libpulsecommon-0.9.19.so
> 002c4000-002c8000 r-xp  08:01 10455682   /usr/lib/libXtst.so.6.1.0
> 002c8000-002c9000 r--p 4000 08:01 10455682   /usr/lib/libXtst.so.6.1.0
> 002c9000-002ca000 rw-p 5000 08:01 10455682   /usr/lib/libXtst.so.6.1.0
> 002ca000-0033 r-xp  08:01 10455079
> /usr/lib/libsndfile.so.1.0.20
> 0033-00331000 r--p 00065000 08:01 10455079
> /usr/lib/libsndfile.so.1.0.20
> 00331000-00332000 rw-p 00066000 08:01 10455079
> /usr/lib/libsndfile.so.1.0.20
> 00332000-00336000 rw-p  00:00 0
> 00336000-00344000 r-xp  08:01 10452994   /usr/lib/libXext.so.6.4.0
> 00344000-00345000 r--p d000 08:01 10452994   /usr/lib/libXext.so.6.4.0
> 00345000-00346000 rw-p e000 08:01 10452994   /usr/lib/libXext.so.6.4.0
> 00346000-00359000 r-xp  08:01 11740525   /lib/tls/i686/cmov/
> libnsl-2.10.1.so
> 00359000-0035a000 r--p 00012000 08:01 11740525   /lib/tls/i686/cmov/
> libnsl-2.10.1.so
> 0035a000-0035b000 rw-p 00013000 08:01 11740525   /lib/tls/i686/cmov/
> libnsl-2.10.1.so
> 0035b000-0035d000 rw-p  00:00 0
> 0035d000-003ab000 r-xp  08:01 10453276   /usr/lib/libFLAC.so.8.2.0
> 003ab000-003ac000 r--p 0004d000 08:01 10453276   /usr/lib/libFLAC.so.8.2.0
> 003ac000-003ad000 rw-p 0004e000 08:01 10453276   /usr/lib/libFLAC.so.8.2.0
> 003ad000-003b2000 r-xp  08:01 10453274   /usr/lib/libogg.so.0.6.0
> 003b2000-003b3000 r--p 4000 08:01 10453274   /usr/lib/libogg.so.0.6.0
> 003b3000-003b4000 rw-p 5000 08:01 10453274   /usr/lib/libogg.so.0.6.0
> 003b4000-003b8000 r-xp  08:01 10455652   /usr/lib/libXdmcp.so.6.0.0
> 003b8000-003b9000 rw-p 3000 08:01 10455652   /usr/lib/libXdmcp.so.6.0.0
> 003b9000-003bb000 r-xp  08:01 10455664
> /usr/lib/libXinerama.so.1.0.0
> 003bb000-003bc000 rw-p 1000 08:01 

Re: [PD] Problems with "pool" object

2010-08-24 Thread IOhannes m zmölnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 08/24/2010 11:17 AM, João Martins wrote:
> So, I've tried using a fresher copy of GEM (0.92.3) and not having xsample
> in the way, and I got apparently the same problem:

oops, i just checked the 0.92 sources, and it seems that my fix is not
there yet.

if you feel experimental, you could try to build Gem from svn/trunk and
see whether it works then.

if not then probably the same measurements (protecting new/delete) have
to be taken on the flext side as well, but i don't know the code there...

> 
> *** glibc detected *** pdextended: free(): invalid pointer: 0x09c2b864 ***

"free()" indicates that i might have guessed the problem right...

fgasdr
IOhannes
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkxzkHcACgkQkX2Xpv6ydvRzuQCg2smjBIjZ7WO32SayCmIFYb59
3vMAni+9RwJzHg7/yp9dZJzIvv9CBk0d
=5QR0
-END PGP SIGNATURE-

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Bang

2010-08-24 Thread Andrew Faraday

seconded...


Date: Tue, 24 Aug 2010 10:22:37 +0300
From: ypat...@gmail.com
To: pcunningham...@googlemail.com
CC: pd-list@iem.at
Subject: Re: [PD] Bang

wow...

is your sister married??
(just kiddin'..)

alabala

On 24 August 2010 09:59, Philip Cunningham  
wrote:

Visiting my family in Scotland, my sister made me an early birthday

present. It's a very tasty, and patchable, cake.


___

Pd-list@iem.at mailing list

UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list




-- 
ypatios


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list 
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Problems with "pool" object

2010-08-24 Thread João Martins
So, I've tried using a fresher copy of GEM (0.92.3) and not having xsample
in the way, and I got apparently the same problem:

*** glibc detected *** pdextended: free(): invalid pointer: 0x09c2b864 ***
=== Backtrace: =
/lib/tls/i686/cmov/libc.so.6[0x17b0d1]
/lib/tls/i686/cmov/libc.so.6[0x17c7d2]
/lib/tls/i686/cmov/libc.so.6(cfree+0x6d)[0x17f8ad]
/home/user/pd-externals/pool/pool.pd_linux(_ZN17flext_root_singledlEPv+0x32)[0x89d52b4]
/home/user/pd-externals/pool/pool.pd_linux(_ZN12flext_single8AtomList4FreeEv+0x25)[0x89d54d5]
/home/user/pd-externals/pool/pool.pd_linux(_ZN12flext_single8AtomListD1Ev+0x28)[0x89d55a0]
/home/user/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single12AttrDataCont5clearEv+0x60)[0x89d33a6]
/home/abade/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single12AttrDataContD0Ev+0x2a)[0x89d4270]
/home/abade/pd-externals/pool/pool.pd_linux(_ZN17flext_base_single4ExitEv+0x7e)[0x89d0694]
/home/user/pd-externals/pool/pool.pd_linux(_ZN16flext_obj_single8obj_freeEP9flext_hdr+0x7b)[0x89d2021]
pdextended(pd_free+0x17)[0x80b5af7]
=== Memory map: 
0011-0024e000 r-xp  08:01 11740506   /lib/tls/i686/cmov/
libc-2.10.1.so
0024e000-0024f000 ---p 0013e000 08:01 11740506   /lib/tls/i686/cmov/
libc-2.10.1.so
0024f000-00251000 r--p 0013e000 08:01 11740506   /lib/tls/i686/cmov/
libc-2.10.1.so
00251000-00252000 rw-p 0014 08:01 11740506   /lib/tls/i686/cmov/
libc-2.10.1.so
00252000-00255000 rw-p  00:00 0
00255000-00266000 r-xp  08:01 10455586   /usr/lib/libcelt.so.0.0.0
00266000-00267000 r--p 0001 08:01 10455586   /usr/lib/libcelt.so.0.0.0
00267000-00268000 rw-p 00011000 08:01 10455586   /usr/lib/libcelt.so.0.0.0
00268000-0026f000 r-xp  08:01 10454666   /usr/lib/libSM.so.6.0.0
0026f000-0027 r--p 6000 08:01 10454666   /usr/lib/libSM.so.6.0.0
0027-00271000 rw-p 7000 08:01 10454666   /usr/lib/libSM.so.6.0.0
00271000-00274000 r-xp  08:01 11722789   /lib/libuuid.so.1.3.0
00274000-00275000 r--p 2000 08:01 11722789   /lib/libuuid.so.1.3.0
00275000-00276000 rw-p 3000 08:01 11722789   /lib/libuuid.so.1.3.0
00276000-00278000 r-xp  08:01 11740517   /lib/tls/i686/cmov/
libdl-2.10.1.so
00278000-00279000 r--p 1000 08:01 11740517   /lib/tls/i686/cmov/
libdl-2.10.1.so
00279000-0027a000 rw-p 2000 08:01 11740517   /lib/tls/i686/cmov/
libdl-2.10.1.so
0027a000-002c2000 r-xp  08:01 10455789   /usr/lib/
libpulsecommon-0.9.19.so
002c2000-002c3000 r--p 00047000 08:01 10455789   /usr/lib/
libpulsecommon-0.9.19.so
002c3000-002c4000 rw-p 00048000 08:01 10455789   /usr/lib/
libpulsecommon-0.9.19.so
002c4000-002c8000 r-xp  08:01 10455682   /usr/lib/libXtst.so.6.1.0
002c8000-002c9000 r--p 4000 08:01 10455682   /usr/lib/libXtst.so.6.1.0
002c9000-002ca000 rw-p 5000 08:01 10455682   /usr/lib/libXtst.so.6.1.0
002ca000-0033 r-xp  08:01 10455079
/usr/lib/libsndfile.so.1.0.20
0033-00331000 r--p 00065000 08:01 10455079
/usr/lib/libsndfile.so.1.0.20
00331000-00332000 rw-p 00066000 08:01 10455079
/usr/lib/libsndfile.so.1.0.20
00332000-00336000 rw-p  00:00 0
00336000-00344000 r-xp  08:01 10452994   /usr/lib/libXext.so.6.4.0
00344000-00345000 r--p d000 08:01 10452994   /usr/lib/libXext.so.6.4.0
00345000-00346000 rw-p e000 08:01 10452994   /usr/lib/libXext.so.6.4.0
00346000-00359000 r-xp  08:01 11740525   /lib/tls/i686/cmov/
libnsl-2.10.1.so
00359000-0035a000 r--p 00012000 08:01 11740525   /lib/tls/i686/cmov/
libnsl-2.10.1.so
0035a000-0035b000 rw-p 00013000 08:01 11740525   /lib/tls/i686/cmov/
libnsl-2.10.1.so
0035b000-0035d000 rw-p  00:00 0
0035d000-003ab000 r-xp  08:01 10453276   /usr/lib/libFLAC.so.8.2.0
003ab000-003ac000 r--p 0004d000 08:01 10453276   /usr/lib/libFLAC.so.8.2.0
003ac000-003ad000 rw-p 0004e000 08:01 10453276   /usr/lib/libFLAC.so.8.2.0
003ad000-003b2000 r-xp  08:01 10453274   /usr/lib/libogg.so.0.6.0
003b2000-003b3000 r--p 4000 08:01 10453274   /usr/lib/libogg.so.0.6.0
003b3000-003b4000 rw-p 5000 08:01 10453274   /usr/lib/libogg.so.0.6.0
003b4000-003b8000 r-xp  08:01 10455652   /usr/lib/libXdmcp.so.6.0.0
003b8000-003b9000 rw-p 3000 08:01 10455652   /usr/lib/libXdmcp.so.6.0.0
003b9000-003bb000 r-xp  08:01 10455664
/usr/lib/libXinerama.so.1.0.0
003bb000-003bc000 rw-p 1000 08:01 10455664
/usr/lib/libXinerama.so.1.0.0
003bc000-003bd000 r-xp  08:01 10527044
/usr/lib/tls/libnvidia-tls.so.185.18.36
003bd000-003be000 rw-p  08:01 10527044
/usr/lib/tls/libnvidia-tls.so.185.18.36
003be000-003d3000 r-xp  08:01 11740583   /lib/tls/i686/cmov/
libpthread-2.10.1.so
003d3000-003d4000 r--p 00014000 08:01 11740583   /lib/tls/i686/cmov/
libpthread-2.10.1.so
003d4000-003d5000 rw-p 00015000 08:01 11740583   /lib/tls/i686/cmov/
libpthread-2.10.1.so
003d5000-003d7000 rw-p  00:00 0
003d7000-00541000 r-xp  08:01 10453340
/usr/lib/libsamplerate.so.0.1.7
00541000-00542000 r--p 00

Re: [PD] Problems with "pool" object

2010-08-24 Thread Frank Barknecht
On Tue, Aug 24, 2010 at 09:33:53AM +0100, João Martins wrote:
> Well... I'll test to see if it is really a problem between pool and xsample
> (they both work on my Mac), and not GEM. Did you notice that if I take Gem
> out, pool and xsample stop having problems?

Ah, no, I overlooked that. Then I would rather get a fresh Gem first, it
may be available in one of the newer Pd-extended versions. 

> But I'm more than willing to follow any suggestions. Could I ask you for
> instructions on how to "recompile everything related to flext with the
> newest versions of the sources"? Or a good link for Linux newbies?

Puh, it's been a while since I compiled it. 
http://puredata.info/Members/thomas/flext should have the most current
information.

Ciao
-- 
Frank

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] howto get "pool"

2010-08-24 Thread João Martins
I'll try that. Should I try it before or after recompiling everything Flext
related (Frank Barknecht suggestion)?

Thank you all,

João Martins

No dia 24 de Agosto de 2010 08:25, IOhannes m zmoelnig
escreveu:

> On 2010-08-23 22:10, João Martins wrote:
> > Hi, S. Jensen,
> >
> > I'm looking for a way to get "pool" working on a Linux distribution
> (Ubuntu
> > or Ubuntu Studio are my main goals). I've noticed that you were able to
> > compile your own Pd-extended and were looking to add "pool" to it.
> > Did you manage to get "pool" working?
> > Installing it is the easy bit, I guess (I'm having no problems installing
> > externals in Linux, as I have some experience in Pd), but "pool" that
> works
> > without any problem in my Mac setup (my main one) appears to be
> incompatible
> > with Gem on Linux, regardless of GEM version or Linux distro.
> >
>
> have you tried gem-0.92 ?
>
> i think there was some conflict with flext and Gem both overriding "new",
> at least Gem behaves now better.
>
> fgmasdr
> IOhannes
>
>


-- 
João Pedro Martins
música . web design
http://joaomartins.entropiadesign.org
mail: joaomart...@mac.com
skype: joaopsmartins
ichat: joaomartins
msn: joaopsmartins
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Problems with "pool" object

2010-08-24 Thread João Martins
Well... I'll test to see if it is really a problem between pool and xsample
(they both work on my Mac), and not GEM. Did you notice that if I take Gem
out, pool and xsample stop having problems?
But I'm more than willing to follow any suggestions. Could I ask you for
instructions on how to "recompile everything related to flext with the
newest versions of the sources"? Or a good link for Linux newbies?

Thanks.

João Martins

2010/8/24 Frank Barknecht 

> On Mon, Aug 23, 2010 at 08:47:24PM +0100, João Martins wrote:
> > When I create a "pool" instance and open the help patch and then try to
> > close it (this is the fastest way to test, since it produces the same
> output
> > as putting a fid_class object into the patch), this is what I get at the
> > terminal console:
> >
> > *** glibc detected *** pd: free(): invalid pointer: 0x0a53dd2c ***
> > === Backtrace: =
> > /lib/tls/i686/cmov/libc.so.6[0xb7515704]
> > /lib/tls/i686/cmov/libc.so.6(cfree+0x96)[0xb75176b6]
> >
> /home/user/pd-externals/xsample/xsample.pd_linux(_ZN17flext_root_singledlEPv+0x32)[0xb5b337b4]
> >
> /home/user/pd-externals/xsample/xsample.pd_linux(_ZN12flext_single8AtomList4FreeEv+0x25)[0xb5b33975]
>
> I know that one: Isn't it strange that a crash in pool should give an
> error message about xsample.pd_linux? I don't know the exact reason for
> this, but a quick fix was to remove xsample.pd_linux when using pool. Of
> course then you cannot use xsample. :(
>
> So the less quick fix for me was to recompile everything related to
> flext with the newest versions of the sources.
>
> Ciao
> --
> Frank
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
>



-- 
João Pedro Martins
música . web design
http://joaomartins.entropiadesign.org
mail: joaomart...@mac.com
skype: joaopsmartins
ichat: joaomartins
msn: joaopsmartins
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] howto get "pool"

2010-08-24 Thread IOhannes m zmoelnig
On 2010-08-23 22:10, João Martins wrote:
> Hi, S. Jensen,
> 
> I'm looking for a way to get "pool" working on a Linux distribution (Ubuntu
> or Ubuntu Studio are my main goals). I've noticed that you were able to
> compile your own Pd-extended and were looking to add "pool" to it.
> Did you manage to get "pool" working?
> Installing it is the easy bit, I guess (I'm having no problems installing
> externals in Linux, as I have some experience in Pd), but "pool" that works
> without any problem in my Mac setup (my main one) appears to be incompatible
> with Gem on Linux, regardless of GEM version or Linux distro.
> 

have you tried gem-0.92 ?

i think there was some conflict with flext and Gem both overriding "new",
at least Gem behaves now better.

fgmasdr
IOhannes



smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Bang

2010-08-24 Thread ypatios
wow...

is your sister married??
(just kiddin'..)

alabala

On 24 August 2010 09:59, Philip Cunningham wrote:

> Visiting my family in Scotland, my sister made me an early birthday
> present. It's a very tasty, and patchable, cake.
>
> ___
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
>
>


-- 
ypatios
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list