Hi--
I was able to compile both the tutorial examples in flext and my own simple flext externals fine when I was using version 0.4.7...now I'm trying to use 0.5.0 with the new build system (which is great, btw), and everything seems to compile fine, flext is installed. Then I create a package.txt with the minimum info, i.e. just
NAME= myexternal SRCS= main.cpp
It compiles fine, installs fine, but when I try to create an instance of the object in a PD patch, PD crashes after a delay of about a half second. I don't know how to trace the crash or anything. I'm on OS X 10.3.9, using Hans's installer PD package (Pd-0.38-4-extended-RC1.app). This happens when I try to compile my own externals using the buildsys as well as Thomas's tutorial examples (I created similar package.txt files for those examples).
Starting PD from the command line, upon crashing it spits out
dyld: ./pd Undefined symbols: _ZN11TableAnyMapD1Ev.eh socket receive error: Connection reset by peer (54) Trace/BPT trap
The only warning I get during any of the compile or install procedures is
/usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:40: warning:
overriding commands for target pd-darwin/release-single' /usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:36: warning: ignoring old commands for target
pd-darwin/release-single'
when i do build.sh pd gcc install
which doesn't seem like an issue.
Is there a problem with my use of the new build system or what? I'm stuck.
Thanks for the help and all the great work,
Jacob Last
Hi Jacob, this sounds like you are compiling against shared flext libraries, but the version that you have installed is not the same version as your flext headers. I'm not too familiar with Hans' package but i think i remember that it comes with shared externals and contains flext shared libraries. If the headers and the build system are included as well you could use that, if not, you would have to use a flext release or cvs version, but probably also recompile the flext-base externals in the Pd.app package. Sorry for the inconvenience, i hope we can sort this out soon.
best greetings, Thomas
Jacob Last schrieb:
Hi--
I was able to compile both the tutorial examples in flext and my own simple flext externals fine when I was using version 0.4.7...now I'm trying to use 0.5.0 with the new build system (which is great, btw), and everything seems to compile fine, flext is installed. Then I create a package.txt with the minimum info, i.e. just
NAME= myexternal SRCS= main.cpp
It compiles fine, installs fine, but when I try to create an instance of the object in a PD patch, PD crashes after a delay of about a half second. I don't know how to trace the crash or anything. I'm on OS X 10.3.9, using Hans's installer PD package (Pd-0.38-4-extended-RC1.app). This happens when I try to compile my own externals using the buildsys as well as Thomas's tutorial examples (I created similar package.txt files for those examples).
Starting PD from the command line, upon crashing it spits out
dyld: ./pd Undefined symbols: _ZN11TableAnyMapD1Ev.eh socket receive error: Connection reset by peer (54) Trace/BPT trap
The only warning I get during any of the compile or install procedures is
/usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:40: warning: overriding commands for target
pd-darwin/release-single' /usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:36: warning: ignoring old commands for target
pd-darwin/release-single'when i do
build.sh pd gcc install
which doesn't seem like an issue.Is there a problem with my use of the new build system or what? I'm stuck.
Thanks for the help and all the great work,
Jacob Last
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Thomas--
I'm taking a look and not finding any flext headers or libraries included in the Pd.app package (I removed the flext headers dir that was by default installed there by the last flext release). As far as I can see, the only flext files i have in my filesystem are the libraries in /usr/local/lib (which are all up to date), the headers in /usr/local/include/flext, and the source and buildsys in /usr/src/flext.
Where would these shared externals reside and how do I recognize them? Where would the included flext libraries be?
Thanks, Jacob
On 7/19/05, Thomas Grill gr@grrrr.org wrote:
Hi Jacob, this sounds like you are compiling against shared flext libraries, but the version that you have installed is not the same version as your flext headers. I'm not too familiar with Hans' package but i think i remember that it comes with shared externals and contains flext shared libraries. If the headers and the build system are included as well you could use that, if not, you would have to use a flext release or cvs version, but probably also recompile the flext-base externals in the Pd.app package. Sorry for the inconvenience, i hope we can sort this out soon.
best greetings, Thomas
Jacob Last schrieb:
Hi--
I was able to compile both the tutorial examples in flext and my own simple flext externals fine when I was using version 0.4.7...now I'm trying to use 0.5.0 with the new build system (which is great, btw), and everything seems to compile fine, flext is installed. Then I create a package.txt with the minimum info, i.e. just
NAME= myexternal SRCS= main.cpp
It compiles fine, installs fine, but when I try to create an instance of the object in a PD patch, PD crashes after a delay of about a half second. I don't know how to trace the crash or anything. I'm on OS X 10.3.9, using Hans's installer PD package (Pd-0.38-4-extended-RC1.app). This happens when I try to compile my own externals using the buildsys as well as Thomas's tutorial examples (I created similar package.txt files for those examples).
Starting PD from the command line, upon crashing it spits out
dyld: ./pd Undefined symbols: _ZN11TableAnyMapD1Ev.eh socket receive error: Connection reset by peer (54) Trace/BPT trap
The only warning I get during any of the compile or install procedures is
/usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:40: warning: overriding commands for target
pd-darwin/release-single' /usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:36: warning: ignoring old commands for target
pd-darwin/release-single'when i do
build.sh pd gcc install
which doesn't seem like an issue.Is there a problem with my use of the new build system or what? I'm stuck.
Thanks for the help and all the great work,
Jacob Last
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Thomas--
The problem I'm having is definitely with the build system. If I check out the flext tutorials from CVS, then copy in the makefile and config from the 0.4.1 distribution of the tut examples (modified to point to the correct flext libs and headers), then the externals build fine (with flext 0.5.0) and run fine in PD. But if i build them the normal way (with the build system), then they compile fine but they crash PD!
So there is something about the way the build sys is compiling them as opposed to how the old makefile did it. I will try to track it down.
Jacob
On 7/20/05, Jacob Last jacoblast@gmail.com wrote:
Thomas--
I'm taking a look and not finding any flext headers or libraries included in the Pd.app package (I removed the flext headers dir that was by default installed there by the last flext release). As far as I can see, the only flext files i have in my filesystem are the libraries in /usr/local/lib (which are all up to date), the headers in /usr/local/include/flext, and the source and buildsys in /usr/src/flext.
Where would these shared externals reside and how do I recognize them? Where would the included flext libraries be?
Thanks, Jacob
On 7/19/05, Thomas Grill gr@grrrr.org wrote:
Hi Jacob, this sounds like you are compiling against shared flext libraries, but the version that you have installed is not the same version as your flext headers. I'm not too familiar with Hans' package but i think i remember that it comes with shared externals and contains flext shared libraries. If the headers and the build system are included as well you could use that, if not, you would have to use a flext release or cvs version, but probably also recompile the flext-base externals in the Pd.app package. Sorry for the inconvenience, i hope we can sort this out soon.
best greetings, Thomas
Jacob Last schrieb:
Hi--
I was able to compile both the tutorial examples in flext and my own simple flext externals fine when I was using version 0.4.7...now I'm trying to use 0.5.0 with the new build system (which is great, btw), and everything seems to compile fine, flext is installed. Then I create a package.txt with the minimum info, i.e. just
NAME= myexternal SRCS= main.cpp
It compiles fine, installs fine, but when I try to create an instance of the object in a PD patch, PD crashes after a delay of about a half second. I don't know how to trace the crash or anything. I'm on OS X 10.3.9, using Hans's installer PD package (Pd-0.38-4-extended-RC1.app). This happens when I try to compile my own externals using the buildsys as well as Thomas's tutorial examples (I created similar package.txt files for those examples).
Starting PD from the command line, upon crashing it spits out
dyld: ./pd Undefined symbols: _ZN11TableAnyMapD1Ev.eh socket receive error: Connection reset by peer (54) Trace/BPT trap
The only warning I get during any of the compile or install procedures is
/usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:40: warning: overriding commands for target
pd-darwin/release-single' /usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:36: warning: ignoring old commands for target
pd-darwin/release-single'when i do
build.sh pd gcc install
which doesn't seem like an issue.Is there a problem with my use of the new build system or what? I'm stuck.
Thanks for the help and all the great work,
Jacob Last
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
I figured it out...removing the -Wl,-x linker option (which is set in flext/buildsys/gnumake.inc) stops the crashing on load...process of elimination :) I'd love an explanation though...
Thanks! Jacob
On 7/20/05, Jacob Last jacoblast@gmail.com wrote:
Thomas--
The problem I'm having is definitely with the build system. If I check out the flext tutorials from CVS, then copy in the makefile and config from the 0.4.1 distribution of the tut examples (modified to point to the correct flext libs and headers), then the externals build fine (with flext 0.5.0) and run fine in PD. But if i build them the normal way (with the build system), then they compile fine but they crash PD!
So there is something about the way the build sys is compiling them as opposed to how the old makefile did it. I will try to track it down.
Jacob
On 7/20/05, Jacob Last jacoblast@gmail.com wrote:
Thomas--
I'm taking a look and not finding any flext headers or libraries included in the Pd.app package (I removed the flext headers dir that was by default installed there by the last flext release). As far as I can see, the only flext files i have in my filesystem are the libraries in /usr/local/lib (which are all up to date), the headers in /usr/local/include/flext, and the source and buildsys in /usr/src/flext.
Where would these shared externals reside and how do I recognize them? Where would the included flext libraries be?
Thanks, Jacob
On 7/19/05, Thomas Grill gr@grrrr.org wrote:
Hi Jacob, this sounds like you are compiling against shared flext libraries, but the version that you have installed is not the same version as your flext headers. I'm not too familiar with Hans' package but i think i remember that it comes with shared externals and contains flext shared libraries. If the headers and the build system are included as well you could use that, if not, you would have to use a flext release or cvs version, but probably also recompile the flext-base externals in the Pd.app package. Sorry for the inconvenience, i hope we can sort this out soon.
best greetings, Thomas
Jacob Last schrieb:
Hi--
I was able to compile both the tutorial examples in flext and my own simple flext externals fine when I was using version 0.4.7...now I'm trying to use 0.5.0 with the new build system (which is great, btw), and everything seems to compile fine, flext is installed. Then I create a package.txt with the minimum info, i.e. just
NAME= myexternal SRCS= main.cpp
It compiles fine, installs fine, but when I try to create an instance of the object in a PD patch, PD crashes after a delay of about a half second. I don't know how to trace the crash or anything. I'm on OS X 10.3.9, using Hans's installer PD package (Pd-0.38-4-extended-RC1.app). This happens when I try to compile my own externals using the buildsys as well as Thomas's tutorial examples (I created similar package.txt files for those examples).
Starting PD from the command line, upon crashing it spits out
dyld: ./pd Undefined symbols: _ZN11TableAnyMapD1Ev.eh socket receive error: Connection reset by peer (54) Trace/BPT trap
The only warning I get during any of the compile or install procedures is
/usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:40: warning: overriding commands for target
pd-darwin/release-single' /usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:36: warning: ignoring old commands for target
pd-darwin/release-single'when i do
build.sh pd gcc install
which doesn't seem like an issue.Is there a problem with my use of the new build system or what? I'm stuck.
Thanks for the help and all the great work,
Jacob Last
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hi Jacob, many thanks for your findings... the -Wl,-x strips local symbols from the binary... i'm wondering though why it crashes for you but not for me..... Can you give me some details about your configuration (OS/gcc/PD versions etc.)? In any case i removed the switch in the flext cvs version.
best greetings, Thomas
Am 20.07.2005 um 23:08 schrieb Jacob Last:
I figured it out...removing the -Wl,-x linker option (which is set in flext/buildsys/gnumake.inc) stops the crashing on load...process of elimination :) I'd love an explanation though...
Thanks! Jacob
On 7/20/05, Jacob Last jacoblast@gmail.com wrote:
Thomas--
The problem I'm having is definitely with the build system. If I check out the flext tutorials from CVS, then copy in the makefile and config from the 0.4.1 distribution of the tut examples (modified to point to the correct flext libs and headers), then the externals build fine (with flext 0.5.0) and run fine in PD. But if i build them the normal way (with the build system), then they compile fine but they crash PD!
So there is something about the way the build sys is compiling them as opposed to how the old makefile did it. I will try to track it down.
Jacob
On 7/20/05, Jacob Last jacoblast@gmail.com wrote:
Thomas--
I'm taking a look and not finding any flext headers or libraries included in the Pd.app package (I removed the flext headers dir that was by default installed there by the last flext release). As far as I can see, the only flext files i have in my filesystem are the libraries in /usr/local/lib (which are all up to date), the headers in /usr/local/include/flext, and the source and buildsys in /usr/src/flext.
Where would these shared externals reside and how do I recognize them? Where would the included flext libraries be?
Thanks, Jacob
On 7/19/05, Thomas Grill gr@grrrr.org wrote:
Hi Jacob, this sounds like you are compiling against shared flext libraries, but the version that you have installed is not the same version as your flext headers. I'm not too familiar with Hans' package but i think i remember that it comes with shared externals and contains flext shared libraries. If the headers and the build system are included as well you could use that, if not, you would have to use a flext release or cvs version, but probably also recompile the flext-base externals in the Pd.app package. Sorry for the inconvenience, i hope we can sort this out soon.
best greetings, Thomas
Jacob Last schrieb:
Hi--
I was able to compile both the tutorial examples in flext and my own simple flext externals fine when I was using version 0.4.7...now I'm trying to use 0.5.0 with the new build system (which is great, btw), and everything seems to compile fine, flext is installed. Then I create a package.txt with the minimum info, i.e. just
NAME= myexternal SRCS= main.cpp
It compiles fine, installs fine, but when I try to create an instance of the object in a PD patch, PD crashes after a delay of about a half second. I don't know how to trace the crash or anything. I'm on OS X 10.3.9, using Hans's installer PD package (Pd-0.38-4-extended-RC1.app). This happens when I try to compile my own externals using the buildsys as well as Thomas's tutorial examples (I created similar package.txt files for those examples).
Starting PD from the command line, upon crashing it spits out
dyld: ./pd Undefined symbols: _ZN11TableAnyMapD1Ev.eh socket receive error: Connection reset by peer (54) Trace/BPT trap
The only warning I get during any of the compile or install procedures is
/usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:40: warning: overriding commands for target
pd-darwin/release-single' /usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:36: warning: ignoring old commands for target
pd-darwin/release-single'when i do
build.sh pd gcc install
which doesn't seem like an issue.Is there a problem with my use of the new build system or what? I'm stuck.
Thanks for the help and all the great work,
Jacob Last
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
Thomas--
My gcc reports g++ (GCC) 3.3 20030304 (Apple Computer, Inc. build 1495) on OS X 10.3.9 running on a dual G5. flext packaged release 0.5.0 Pd version is 0.38-4-devel (Hans' extended-RC1 package)
Best, Jacob
On 7/21/05, Thomas Grill gr@grrrr.org wrote:
Hi Jacob, many thanks for your findings... the -Wl,-x strips local symbols from the binary... i'm wondering though why it crashes for you but not for me..... Can you give me some details about your configuration (OS/gcc/PD versions etc.)? In any case i removed the switch in the flext cvs version.
best greetings, Thomas
Am 20.07.2005 um 23:08 schrieb Jacob Last:
I figured it out...removing the -Wl,-x linker option (which is set in flext/buildsys/gnumake.inc) stops the crashing on load...process of elimination :) I'd love an explanation though...
Thanks! Jacob
On 7/20/05, Jacob Last jacoblast@gmail.com wrote:
Thomas--
The problem I'm having is definitely with the build system. If I check out the flext tutorials from CVS, then copy in the makefile and config from the 0.4.1 distribution of the tut examples (modified to point to the correct flext libs and headers), then the externals build fine (with flext 0.5.0) and run fine in PD. But if i build them the normal way (with the build system), then they compile fine but they crash PD!
So there is something about the way the build sys is compiling them as opposed to how the old makefile did it. I will try to track it down.
Jacob
On 7/20/05, Jacob Last jacoblast@gmail.com wrote:
Thomas--
I'm taking a look and not finding any flext headers or libraries included in the Pd.app package (I removed the flext headers dir that was by default installed there by the last flext release). As far as I can see, the only flext files i have in my filesystem are the libraries in /usr/local/lib (which are all up to date), the headers in /usr/local/include/flext, and the source and buildsys in /usr/src/flext.
Where would these shared externals reside and how do I recognize them? Where would the included flext libraries be?
Thanks, Jacob
On 7/19/05, Thomas Grill gr@grrrr.org wrote:
Hi Jacob, this sounds like you are compiling against shared flext libraries, but the version that you have installed is not the same version as your flext headers. I'm not too familiar with Hans' package but i think i remember that it comes with shared externals and contains flext shared libraries. If the headers and the build system are included as well you could use that, if not, you would have to use a flext release or cvs version, but probably also recompile the flext-base externals in the Pd.app package. Sorry for the inconvenience, i hope we can sort this out soon.
best greetings, Thomas
Jacob Last schrieb:
Hi--
I was able to compile both the tutorial examples in flext and my own simple flext externals fine when I was using version 0.4.7...now I'm trying to use 0.5.0 with the new build system (which is great, btw), and everything seems to compile fine, flext is installed. Then I create a package.txt with the minimum info, i.e. just
NAME= myexternal SRCS= main.cpp
It compiles fine, installs fine, but when I try to create an instance of the object in a PD patch, PD crashes after a delay of about a half second. I don't know how to trace the crash or anything. I'm on OS X 10.3.9, using Hans's installer PD package (Pd-0.38-4-extended-RC1.app). This happens when I try to compile my own externals using the buildsys as well as Thomas's tutorial examples (I created similar package.txt files for those examples).
Starting PD from the command line, upon crashing it spits out
dyld: ./pd Undefined symbols: _ZN11TableAnyMapD1Ev.eh socket receive error: Connection reset by peer (54) Trace/BPT trap
The only warning I get during any of the compile or install procedures is
/usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:40: warning: overriding commands for target
pd-darwin/release-single' /usr/src/flext/buildsys/mac/gnumake-gcc-ext.inc:36: warning: ignoring old commands for target
pd-darwin/release-single'when i do
build.sh pd gcc install
which doesn't seem like an issue.Is there a problem with my use of the new build system or what? I'm stuck.
Thanks for the help and all the great work,
Jacob Last
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
Jacob Last schrieb:
I figured it out...removing the -Wl,-x linker option (which is set in flext/buildsys/gnumake.inc) stops the crashing on load...process of elimination :) I'd love an explanation though...
Hi Jacob, the bad thing about removing the -Wl,-x option is that the externals are really big then. Probably it's only file size and not loaded code size though. I'm wondering what causes the crashes as only local symbols are stripped by -x (and because it doesn't crash for me!) and if there's a way to strip the files in a different way. Does it crash if you are applying "strip -x ext.pd_darwin" on the external afterwards?
thanks, Thomas
I will give it a try on monday and let you know.
Thanks for all your work, Jacob
On 7/31/05, Thomas Grill gr@grrrr.org wrote:
Jacob Last schrieb:
I figured it out...removing the -Wl,-x linker option (which is set in flext/buildsys/gnumake.inc) stops the crashing on load...process of elimination :) I'd love an explanation though...
Hi Jacob, the bad thing about removing the -Wl,-x option is that the externals are really big then. Probably it's only file size and not loaded code size though. I'm wondering what causes the crashes as only local symbols are stripped by -x (and because it doesn't crash for me!) and if there's a way to strip the files in a different way. Does it crash if you are applying "strip -x ext.pd_darwin" on the external afterwards?
thanks, Thomas
Thomas--
strip -x yields a binary that is only a few bytes bigger than the one
made with the -Wl,-x option, and it doesn't crash for me. So it seems
like a good option. Although I am trying to understand what is
different about using strip -x
and doing what should be the same
thing with the -Wl,-x option...
Jacob
On 7/31/05, Jacob Last jacoblast@gmail.com wrote:
I will give it a try on monday and let you know.
Thanks for all your work, Jacob
On 7/31/05, Thomas Grill gr@grrrr.org wrote:
Jacob Last schrieb:
I figured it out...removing the -Wl,-x linker option (which is set in flext/buildsys/gnumake.inc) stops the crashing on load...process of elimination :) I'd love an explanation though...
Hi Jacob, the bad thing about removing the -Wl,-x option is that the externals are really big then. Probably it's only file size and not loaded code size though. I'm wondering what causes the crashes as only local symbols are stripped by -x (and because it doesn't crash for me!) and if there's a way to strip the files in a different way. Does it crash if you are applying "strip -x ext.pd_darwin" on the external afterwards?
thanks, Thomas
hi
we are using GEM/pd at DWI performance at siggraph2005 it's a REALLY REALLY simple keyer i worked on a few years ago got tons of help from CK and jamie on it as i recall. it's used in conjunction with the access grid
http://www.digitalworlds.ufl.edu/projects/CommonTime/overview.htm
cheers~
Patrick Pagano, B.S., M.F.A Digital Media Specialist University of Floirda Digital Worlds Institute 352-294-2082
I'll be there Wednesday and Thursday, my girlfriend is presenting. Any
other Pders going to be there? Maybe we could do a little Pd meetup.
.hc
On Aug 1, 2005, at 11:18 AM, Pat Pagano wrote:
hi
we are using GEM/pd at DWI performance at siggraph2005 it's a REALLY REALLY simple keyer i worked on a few years ago got tons of help from CK and jamie on it as i recall. it's used in conjunction with the access grid
http://www.digitalworlds.ufl.edu/projects/CommonTime/overview.htm
cheers~
Patrick Pagano, B.S., M.F.A Digital Media Specialist University of Floirda Digital Worlds Institute 352-294-2082
PD-list@iem.at mailing list UNSUBSCRIBE and account-management ->
http://lists.puredata.info/listinfo/pd-list
"I have the audacity to believe that peoples everywhere can have three
meals a day for their bodies, education and culture for their minds,
and dignity, equality and freedom for their spirits."
- Martin Luther King, Jr.
Hey!
I just emailed Pat about this. I'll be the "operator" for the "evolving stories" lab. We'll be watching (and sitting on jabber) on tues/wed/thurs Since us three are in EDT maybe we could meet before the "afternoon" events on the morning of one of those days? I'll be in the lab hanging around then anyhow.
We don't have our own venue, do either of you have a venue you could suggest we meet in?
B.
Hans-Christoph Steiner wrote:
I'll be there Wednesday and Thursday, my girlfriend is presenting. Any other Pders going to be there? Maybe we could do a little Pd meetup.
.hc
On Aug 1, 2005, at 11:18 AM, Pat Pagano wrote:
hi
we are using GEM/pd at DWI performance at siggraph2005 it's a REALLY REALLY simple keyer i worked on a few years ago got tons of help from CK and jamie on it as i recall. it's used in conjunction with the access grid
http://www.digitalworlds.ufl.edu/projects/CommonTime/overview.htm
cheers~
Patrick Pagano, B.S., M.F.A Digital Media Specialist University of Floirda Digital Worlds Institute 352-294-2082
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
"I have the audacity to believe that peoples everywhere can have three meals a day for their bodies, education and culture for their minds, and dignity, equality and freedom for their spirits."
- Martin Luther King, Jr.
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hey Pat,
My new lab (Evolving Stories) is a presentation venue for the SIGGRAPH over AG stuff. We'll be watching on tues/wed/thursday and participating in Galen Scorer's "network touch".
Hope to see you around!
B.
PS: you have not compiled VIC for windows have you?
Pat Pagano wrote:
hi
we are using GEM/pd at DWI performance at siggraph2005 it's a REALLY REALLY simple keyer i worked on a few years ago got tons of help from CK and jamie on it as i recall. it's used in conjunction with the access grid
http://www.digitalworlds.ufl.edu/projects/CommonTime/overview.htm
cheers~
Patrick Pagano, B.S., M.F.A Digital Media Specialist University of Floirda Digital Worlds Institute 352-294-2082
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list