[PD] moog~ in pure pd?

2013-10-11 Thread Dan Wilcox
Forgive me, I'm no low level dsp guru. I'm curious. How would one make the ggee [moog~] external in pure pd? [vcf~] sounds close, but of course, it's a band pass so it's not a real replacement. I messed with rjlib [e_beequad= + [u_lowpassq] which sounds pretty good, but there no signal rate

Re: [PD] [PD-announce] pd 0.45-3 released

2013-10-11 Thread Jaime E Oliver
Hi! Thanks miller for the update. A weird thing is happening to me in OSX 10.8. Using both the latest release and 0.43-3, when I open the help patch for bonk I loose the ability to move between edit mode and run mode. Is this happening to other people? J On Oct 4, 2013, at 1:21 AM, Miller

Re: [PD] [PD-announce] pd 0.45-3 released

2013-10-11 Thread peiman khosravi
It seems that focus is on the window behind (creation-arguments), even if you click on the main patcher window. *www.peimankhosravi.co.uk || RSS Feedhttp://peimankhosravi.co.uk/miscposts.rss || Concert News http://spectralkimia.wordpress.com/* On 11 October 2013 08:10, Jaime E Oliver

[PD] build pd with jack in raspbian on rpi?

2013-10-11 Thread Julian Brooks
Hi all, I'm attempting to build pd with jack in raspbian on rpi. I've got most recent pd from git. I'm following instructions from INSTALL.txt as I have a memory of IOhannes mentioning that's working again - and also it's the only way I know of adding the '--enable-jack' flag. Or so I thought:

Re: [PD] [PD-announce] pd 0.45-3 released

2013-10-11 Thread Julian Brooks
Yip, had this for a while (debian). Seems to be shortcut keys that stop but using drop-down menu works (here at least). On 11 October 2013 08:20, peiman khosravi peimankhosr...@gmail.com wrote: It seems that focus is on the window behind (creation-arguments), even if you click on the main

Re: [PD] build pd with jack in raspbian on rpi?

2013-10-11 Thread IOhannes m zmölnig
On 2013-10-11 09:23, Julian Brooks wrote: checking for jack_set_xrun_callback in -ljack... no checking for jack_set_error_function in -ljack... no you have to install libjack-dev. a good start to install all/most packages needed to build jack (at least with the same features as the puredata

Re: [PD] build pd with jack in raspbian on rpi?

2013-10-11 Thread Julian Brooks
Great stuff, nice one IOhannes. On 11 October 2013 10:03, IOhannes m zmölnig zmoel...@iem.at wrote: On 2013-10-11 09:23, Julian Brooks wrote: checking for jack_set_xrun_callback in -ljack... no checking for jack_set_error_function in -ljack... no you have to install libjack-dev. a

Re: [PD] moog~ in pure pd?

2013-10-11 Thread martin brinkmann
On 10/11/2013 08:32 AM, Dan Wilcox wrote: [vcf~] sounds close, but of course, it's a band pass so it's not a real replacement. the undocumented 2nd output of vcf~ is a lowpass. and there are a few methods to build the basic (cookbook) filters with pd-vanilla-objects: you could use fexpr~ to

[PD] datastructures midirecorder

2013-10-11 Thread Rob Bothof
dear list, i've been working with pd for a couple of years and finally diving into data-structures/scalars to build a midi recorder / looper. is there a way to delete a scalar, without selecting it with the mouse ? or does one generally specify an active state parameter for each scalar.

Re: [PD] [PD-announce] pdp 0.14.0

2013-10-11 Thread Tom Schouten
while preparing the package for debian, i noticed two more issues: - - the (lib)v4l check in configure seems to be confused. namely AC_CHECK_HEADERS([libv4l1-videodev.h], have_v4l=yes) AC_CHECK_HEADERS([linux/videodev.h], have_libv4l=yes) seems to be reversed: if libv4l1-videodev.h is

Re: [PD] [PD-announce] pdp 0.14.0

2013-10-11 Thread IOhannes m zmölnig
On 2013-10-11 15:04, Tom Schouten wrote: - - closing the glx window quits Pd without error :-( strange. for me window close doesn't work at all (tried on xmonad and xfce4) what window manager are you using? xfce4. if you cannot [close( the window, try closing the patch containing

Re: [PD] [PD-announce] pdp 0.14.0

2013-10-11 Thread puredata
for me many objects aren't working: pdp_conv_sobel_edge ... couldn't create pdp_gradient ... couldn't create pdp_motion_phase ... couldn't create but pdp_gain, pdp_glx, pdp_v4l, pdp_add etc are working. ___ Pd-list@iem.at mailing list UNSUBSCRIBE

Re: [PD] datastructures midirecorder

2013-10-11 Thread Patrice Colet
Hello Rob, scalars can't be deleted actually without the GUI, but there are several tricks for doing something like it. One is about using float indexes instead of using pointer order, and then set to -1 or another value that doesn't count the scalars that have to be removed, and finally use

Re: [PD] [PD-announce] pdp 0.14.0

2013-10-11 Thread IOhannes m zmölnig
On 2013-10-11 20:59, pured...@11h11.com wrote: for me many objects aren't working: pdp_conv_sobel_edge ... couldn't create pdp_gradient ... couldn't create pdp_motion_phase ... couldn't create but pdp_gain, pdp_glx, pdp_v4l, pdp_add etc are working. many pdp objects are really

Re: [PD] datastructures midirecorder

2013-10-11 Thread João Pais
Hello Rob, scalars can't be deleted actually without the GUI, but there are several tricks for doing something like it. One is about using float indexes instead of using pointer order, and then set to -1 or another value that doesn't count you can also make inactive scalars invisible, then