[PD] bbogart's popup

2015-04-13 Thread Peter P.
Hi list,

trying to compile Ben Bogart's popup object from svn, executing
make pd_linux
in the popup source directory. Getting the following error though:

cc -DPD -O2 -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow
-Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch
-I../../src -I../../../pd/src -o popup.o -c popup.c
popup.c: In function ‘popup_activate’:
popup.c:306:36: error: unused parameter ‘z’ [-Werror=unused-parameter]
 static void popup_activate(t_gobj *z, t_glist *glist, int state)

[...]

cc1: all warnings being treated as errors
makefile:61: recipe for target 'popup.pd_linux' failed
make: *** [popup.pd_linux] Error 1


Does anyone have a hint what I could be trying next?

thank you!
Peter

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


Re: [PD] pd in a eurorack modular system

2015-04-13 Thread Paul Batchelor
Hey Patrick!

I'm pretty good friends with the guys at QuBit. In fact, they hired me to
help them get PD working on the Nebulae! I only wrote some basic tests for
it, but people are definitely using it for PD.

pd-vanilla is what it ships with, but with some work it may be possible to
include compiled PD objects from pd-extended.

There are definitely custom Csound patches available online. Not sure about
any PD ones. They do supply templates for PD patches that work. I was the
one who wrote it (though they might have tweaked it a bit since then.)

It's a great sounding module that I highly recommend. Let me know if you
have any more questions about it on or off list.

-P


On Mon, Apr 13, 2015 at 8:01 PM, Peter P. peterpar...@fastmail.com wrote:

 * Pagano, Patrick p...@digitalworlds.ufl.edu [2015-04-13 19:53]:
  Hi
 
 
  I am building my first modualr system with a little grant money i got
 for research. For the first 1000$ i got a beginner Pittsburgh Modular
 system and one envelope module. FOr the second 1000$ to complete the grant
 i am considering
 
 
 
  http://www.qubitelectronix.com/#!nebulae/c23nm
 
 
  The nebulae says it will run custom Csound and pd code which i find very
 intriguing.
 The manual says The module uses a Raspberry Pi as a CPU.
 So you could get yourself a Raspberry Pi, or even better, UDOO board,
 run Pd on it and save some money and gain some expertise on the way, and
 stay independent of a additional commercial hardware provider.

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

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


Re: [PD] bbogart's popup

2015-04-13 Thread Peter P.
* Claude Heiland-Allen cla...@mathr.co.uk [2015-04-13 18:47]:
 On 13/04/15 22:56, Peter P. wrote:
 Hi list,
 
 trying to compile Ben Bogart's popup object from svn, executing
  make pd_linux
 in the popup source directory. Getting the following error though:
 
 cc -DPD -O2 -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow
 -Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch
 -I../../src -I../../../pd/src -o popup.o -c popup.c
 popup.c: In function ‘popup_activate’:
 popup.c:306:36: error: unused parameter ‘z’ [-Werror=unused-parameter]
   static void popup_activate(t_gobj *z, t_glist *glist, int state)
 
 [...]
 
 cc1: all warnings being treated as errors
 
 delete -Werror from the makefile.
 
 probably compiler added/changed warnings since popup was written - this is
 why -Werror should not be used unless specified manually by the developer
 during testing.
 
 there are many (around 70) instances of -Werror in various build systems in
 the pd svn.  they should all be removed.
 
 btw, after doing this it still failed to link for me - missing -fPIC
 required on my architecture - so add that to the makefile too while you're
 there.

Thank you so much Claude, this is amazing, fast, wonderful help! Of
course the object compiles really nicely after your changes have been
done to the makefile.

best, P

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


Re: [PD] bbogart's popup

2015-04-13 Thread Claude Heiland-Allen

On 13/04/15 22:56, Peter P. wrote:

Hi list,

trying to compile Ben Bogart's popup object from svn, executing
make pd_linux
in the popup source directory. Getting the following error though:

cc -DPD -O2 -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow
-Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch
-I../../src -I../../../pd/src -o popup.o -c popup.c
popup.c: In function ‘popup_activate’:
popup.c:306:36: error: unused parameter ‘z’ [-Werror=unused-parameter]
  static void popup_activate(t_gobj *z, t_glist *glist, int state)

[...]

cc1: all warnings being treated as errors


delete -Werror from the makefile.

probably compiler added/changed warnings since popup was written - this 
is why -Werror should not be used unless specified manually by the 
developer during testing.


there are many (around 70) instances of -Werror in various build systems 
in the pd svn.  they should all be removed.


btw, after doing this it still failed to link for me - missing -fPIC 
required on my architecture - so add that to the makefile too while 
you're there.



Claude


makefile:61: recipe for target 'popup.pd_linux' failed
make: *** [popup.pd_linux] Error 1


Does anyone have a hint what I could be trying next?

thank you!
Peter

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




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


Re: [PD] pd in a eurorack modular system

2015-04-13 Thread Peter P.
* Pagano, Patrick p...@digitalworlds.ufl.edu [2015-04-13 19:53]:
 Hi
 
 
 I am building my first modualr system with a little grant money i got for 
 research. For the first 1000$ i got a beginner Pittsburgh Modular system and 
 one envelope module. FOr the second 1000$ to complete the grant i am 
 considering
 
 
 
 http://www.qubitelectronix.com/#!nebulae/c23nm
 
 
 The nebulae says it will run custom Csound and pd code which i find very 
 intriguing.
The manual says The module uses a Raspberry Pi as a CPU. 
So you could get yourself a Raspberry Pi, or even better, UDOO board,
run Pd on it and save some money and gain some expertise on the way, and
stay independent of a additional commercial hardware provider.

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


[PD] pd in a eurorack modular system

2015-04-13 Thread Pagano, Patrick
Hi


I am building my first modualr system with a little grant money i got for 
research. For the first 1000$ i got a beginner Pittsburgh Modular system and 
one envelope module. FOr the second 1000$ to complete the grant i am considering



http://www.qubitelectronix.com/#!nebulae/c23nm


The nebulae says it will run custom Csound and pd code which i find very 
intriguing.

i would LOVE to buid a patch with about 3 simple effects that are not in the 
traditional analog modular world a sample and hold and a simple RM


Granulation

PV

FFT

SH

Ring Mod


and be able to toggle through the effects. It says it runs pd-vanilla


Has anyone on the list seen/used or can confrim that the code actually runs 
properly

I have been searching through the web and Muffwiggler and i have not seen any 
proof of it running so i am skeptical but still curious

before i lunk down 400+4 i want it to run my patches or at least a detailed how 
to


please let me know if you have any experience with it.


Patrick Pagano B.S, M.F.A
Audio and Projection Design Faculty
Digital Worlds Institute
University of Florida, USA
(352)294-2020
___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Pix_video

2015-04-13 Thread Peter Venus

Just want to share this:
I am working on OSX 10.9.5 with pdX-43.4 as well and i DONT have any 
problems getting my webcam running (built in and USB).


This applies to my Desktop as well as my laptop.

The interesting part here is, that i am running OSX on non-apple 
hardware. So maybe the bug is related to the apple-machines themselves???


regards, Peter

Am 12.04.15 um 00:52 schrieb Nicolas Lhommet:

Hello,
It's probably the same problem, related to recent macs's built in
webcam driver incompatibility with the video library used by Gem, that has
been discussed last month on this list, and for which i proposed a
workaround : make use of iGlasses shareware as a webcam passthrough
(see GEM Motion Capture thread for details), but a real solution will
require a rewrite of Mac OS X video-related code in Gem.

Regards,
Nicolas

2015-04-11 17:18 GMT+02:00 Olga Isabel Medina olis...@hotmail.com:


I am starting to work with Pd and I want to do something with video
editing. But I still cannot find a way for Pd to recognise my camera,
when I try to work with a video patch, it just shows a white image.

Can you please help me solve this problem?

I have a Mac OS X Version 10.9.5
My version of Pd is: Pd 0.43.4-extended
And I'm working with the Mac's built in camera.






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



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


Re: [PD] Pix_video

2015-04-13 Thread Nicolas Lhommet
Yes, that's why i was talking about recent macs's built in webcam driver,
(possibly models with PCIe-based cameras such as the MacBook Air 2013, and
others since), and by macs i DONT mean non-apple hardware :)

QuickTime API (which is used by GEM for video capture) has been deprecated
since 10.9, so it can be presumed that full compatibility with this
obsolete video library was not Apple's priority for their new webcam
drivers (which already had their problems on OSX 10.8 before a bug fix
update :
http://www.macrumors.com/2013/09/24/os-x-10-8-5-supplemental-update-being-prepared-to-address-facetime-camera-and-other-issues/
).
But compatibility problems seem to affect built-in usb cameras drivers as
well, see
http://stackoverflow.com/questions/20669326/sgnewchannel-error-9405-on-mac-10-9-1/

Regards, Nicolas

2015-04-13 9:29 GMT+02:00 Peter Venus n...@petervenus.de:

 Just want to share this:
 I am working on OSX 10.9.5 with pdX-43.4 as well and i DONT have any
 problems getting my webcam running (built in and USB).

 This applies to my Desktop as well as my laptop.

 The interesting part here is, that i am running OSX on non-apple hardware.
 So maybe the bug is related to the apple-machines themselves???

 regards, Peter

 Am 12.04.15 um 00:52 schrieb Nicolas Lhommet:

 Hello,
 It's probably the same problem, related to recent macs's built in
 webcam driver incompatibility with the video library used by Gem, that has
 been discussed last month on this list, and for which i proposed a
 workaround : make use of iGlasses shareware as a webcam passthrough
 (see GEM Motion Capture thread for details), but a real solution will
 require a rewrite of Mac OS X video-related code in Gem.

 Regards,
 Nicolas

 2015-04-11 17:18 GMT+02:00 Olga Isabel Medina olis...@hotmail.com:

  I am starting to work with Pd and I want to do something with video
 editing. But I still cannot find a way for Pd to recognise my camera,
 when I try to work with a video patch, it just shows a white image.

 Can you please help me solve this problem?

 I have a Mac OS X Version 10.9.5
 My version of Pd is: Pd 0.43.4-extended
 And I'm working with the Mac's built in camera.


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


Re: [PD] Converting colours to sound

2015-04-13 Thread Christopher Meng
Hi all,

Thanks for the great info.  [pix_mean_color] is awesome!  I was looking for
something like this for a patch.  My patch is very similar to the ones in
this thread, but I'm looking to have multiple synths generating sound using
different areas of the movie or picture.  I'd REALLY love if I could
specify a polygon, single pixel, or set of pixels (arbitrary or along a
ling segment or curve) within the picture, for [pix_mean_color] to use.

I've been searching through the gem objects for a way to limit which
pixels [pix_mean_color]
will see.  I imagine another possibility is to show limited areas of the
same video, each in a different patch, and then use [pix_mean_color] as in
patches above.   I'm not experience with gem and can't imagine how to do
either.  Has anyone done this?

Best,

Chris

On Sun, Apr 12, 2015 at 11:54 AM, Antonio Roberts anto...@hellocatfood.com
wrote:

 Hi Alan and Claude,

 Thanks for your insights. I now understand that there is no one true
  way to convert colour to sound and that there will always be a
 tuning bias, similar to what I already did in my Pixel Player
 software.

 Thanks for the heads up about the [pix_mean_color] object, I think
 I'll incorporate it into a new version of the software.

 Antonio

 On 9 April 2015 at 21:20, Alan Brooker alan.brooker2...@gmail.com wrote:
  Greetings Ant!
 
  Perhaps try looking at  [pix_mean_color] object? Attached is a patch that
  I've cleaned up- it just extracts RGA values from loaded video then
 unpacks
  them for 3 [osc~] objects-crude but could be starting point I hope
 
  ...best!
 
  Al
 
  On Sun, Apr 5, 2015 at 3:51 PM, Antonio Roberts 
 anto...@hellocatfood.com
  wrote:
 
  I've been studying the work of Neil Harbisson for awhile and I'm
  looking to try and replicate in part the functionality of his eyeborg
  using Pure Data. I have already built a simple patch to convert pixels
  to sound but now I want to expand on it. Here's my initial research:
  http://www.hellocatfood.com/sonification-studiespixel-waves/
 
  Colours don't directly relate to sound and so Harbisson and others
  must use a scale to assign colours to sounds. Some initial research
  brought these up:
 
 
 
 http://blogs.plos.org/neuroanthropology/files/2014/03/Harbisson-The-Sound-of-Colors-TED.jpg
  http://www.bbc.co.uk/news/magazine-16681630
  http://www.lunarplanner.com/Harmonics/planetary-harmonics.html
  http://www.flutopedia.com/sound_color.htm
 
  Can anyone think of a way to translate this into pd? In the end I
  would like to be able to display a block of colour on screen and have
  that generate a specific note.
 
  Any help is appreciated.
 
  Antonio
 
  --
  
  anto...@hellocatfood.com
  http://www.hellocatfood.com
  
 
  ___
  Pd-list@lists.iem.at mailing list
  UNSUBSCRIBE and account-management -
  http://lists.puredata.info/listinfo/pd-list
 
 



 --
 
 anto...@hellocatfood.com
 http://www.hellocatfood.com
 

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

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