Re: [PD] libpd separating gui from core

2014-02-23 Thread Ivica Bukvic
libpd requires a lot of what pd-l2ork offers in order to be able to move forward (obeying stacking order for instance, that are a prerequisite for global system-wide presets as well as editing tools like undo/redo and tofront/back). pd-l2ork also improves on pack, route, select, and trigger to

Re: [PD] libpd separating gui from core

2014-02-23 Thread Dan Wilcox
On Feb 23, 2014, at 10:46 PM, Ivica Bukvic i...@vt.edu wrote: libpd requires a lot of what pd-l2ork offers in order to be able to move forward (obeying stacking order for instance, that are a prerequisite for global system-wide presets as well as editing tools like undo/redo and

Re: [PD] libpd separating gui from core

2014-02-23 Thread Ivica Bukvic
On Sun, Feb 23, 2014 at 11:04 PM, Dan Wilcox danomat...@gmail.com wrote: I consider that a sad thing. At least with Pd-extended, it was largely Pd-vanilla + externals. I don't think it needs to be sad. Yes, pd-extended is pd-vanilla + externals + most limitations of the vanilla. How does

[PD] ps3 controller under linux

2014-02-22 Thread Atte
Hi I'm trying to get the input from a ps3 controller into PD. In the end I'd like to have it connect wireless, but for now I just connected via usb and tapped the PlayStation button on the controller. This shows up in lsusb: atte@skagen:~$ lsusb | grep Sony Bus 003 Device 013: ID 054c:0268

Re: [PD] ps3 controller under linux

2014-02-22 Thread Atte
On 02/22/2014 06:33 PM, Atte wrote: So I'm hoping someone could give a hint or suggestion about what to try next, things I could have forgotten etc. Ok, after sending the mail, I did some further poking, and it seems [open 10] opens the controller. atte@skagen:~$ ll /dev/input/ total 0

Re: [PD] ps3 controller under linux

2014-02-22 Thread Atte
On 02/22/2014 06:54 PM, Atte wrote: On 02/22/2014 06:33 PM, Atte wrote: it seems [open 10] opens the controller. I mean [open 10( of course :-) -- Atte http://atte.dk http://modlys.dk ___ Pd-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] ps3 controller under linux

2014-02-22 Thread Charles Goyard
Hi, Atte wrote: Ok, after sending the mail, I did some further poking, and it seems [open 10] opens the controller. Using device 10 seems like a bad idea to me (I might be wrong), since I'd expect that device number to depend on what else is plugged in and in what order. Is there a better

Re: [PD] ps3 controller under linux

2014-02-22 Thread Atte
On 02/22/2014 07:22 PM, Charles Goyard wrote: The help patch says you can open by vendor and product id. Thanks. I already tried that, but forgot to prepend the 0x. Using [open 0x054c 0x0268( works just great! Sorry about that :-) -- Atte http://atte.dk http://modlys.dk

[PD] core - gui question

2014-02-22 Thread Jonathan Wilkes
Hi list, I've got a nice little method for an info class in Pd-l2ork that tells whether an x/y coordinate lies within an object on a particular canvas. For the new svg-style drawing commands I've added, this method makes it possible to do some fairly simple tests within a patch to make

Re: [PD] threads in pd, dataflow

2014-02-22 Thread Jonathan Wilkes
On 02/21/2014 10:04 PM, Simon Wise wrote: On 22/02/14 06:28, Jonathan Wilkes wrote: On 02/21/2014 06:41 AM, Simon Wise wrote: Something to really make pd parallel would involve treating fan-outs as opportunities for the interpreter to launch each branch in a new thread, implementing the

[PD] smooth random numbers

2014-02-22 Thread Pagano, Patrick
Hello i have asked this is a few different ways and experimented but i am wondering, how does one create smooth random numbers that flow between each number instead of hoping from number to number? I would like to start creating random midi values from 0-127 and pick each number say every 5

Re: [PD] smooth random numbers

2014-02-22 Thread jrsv
I guess you should just use [line] and make sure the line time is equal or just a bit shorter than the object you use to ask random for a new number. -- Lic. José Rafael Subía Valdez www.jrsv.net On 22/02/2014, at 16:54, Pagano, Patrick p...@digitalworlds.ufl.edu wrote: Hello i have

Re: [PD] smooth random numbers

2014-02-22 Thread Roman Haefeli
On Sam, 2014-02-22 at 21:54 +, Pagano, Patrick wrote: I would like to start creating random midi values from 0-127 and pick each number say every 5 second and have each random number then flow to the next smoothly. so if say the first number is 60 and the second is 85, the data stream

Re: [PD] smooth random numbers

2014-02-22 Thread Martin Peach
On 2014-02-22 16:54, Pagano, Patrick wrote: Hello i have asked this is a few different ways and experimented but i am wondering, how does one create smooth random numbers that flow between each number instead of hoping from number to number? One way is to do a random walk, where you would

[PD] Myo armband and Pd?

2014-02-22 Thread Richie Cyngler
https://www.thalmic.com/en/myo/ Is anyone working with this? Unfortunately it's closed source and their locking down the data stream from what I've read. I actually can't find what sort of data it does put out other than a set of predetermined gestures. Anyone else curious or have more info

Re: [PD] smooth random numbers

2014-02-22 Thread Ingo
Starting from Roman's patch I would probably do it like the attached patch. Ingo #N canvas 988 0 286 367 10; #X obj 71 76 random 128; #X obj 71 49 metro 5000; #X obj 71 31 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 1 1 ; #X obj 71 130 line; #X obj 71 150 i; #X obj 71 103 pack f 5000; #X

Re: [PD] threads in pd, dataflow

2014-02-22 Thread Simon Wise
On 23/02/14 08:16, Jonathan Wilkes wrote: On 02/21/2014 10:04 PM, Simon Wise wrote: On 22/02/14 06:28, Jonathan Wilkes wrote: On 02/21/2014 06:41 AM, Simon Wise wrote: Something to really make pd parallel would involve treating fan-outs as opportunities for the interpreter to launch each

Re: [PD] threads in pd, dataflow

2014-02-22 Thread Simon Wise
On 23/02/14 15:13, Simon Wise wrote: Note that we already break cycles in the graph, so we can indeed take each branch as a separate tree. ... but it is more an unroll than a break, or rather an exploration of the graph as a tree which may revisit the same nodes ... programmer beware of

Re: [PD] Myo armband and Pd?

2014-02-22 Thread Simon Wise
On 23/02/14 10:47, Richie Cyngler wrote: https://www.thalmic.com/en/myo/ Is anyone working with this? Unfortunately it's closed source and their locking down the data stream from what I've read. I actually can't find what sort of data it does put out other than a set of predetermined gestures.

Re: [PD] libpd separating gui from core

2014-02-22 Thread Rich E
On Fri, Feb 21, 2014 at 3:54 AM, Jonathan Wilkes jancs...@yahoo.com wrote: On 02/20/2014 09:50 PM, Rich E wrote: On Wed, Feb 19, 2014 at 12:07 AM, Jonathan Wilkes jancs...@yahoo.comwrote: On 02/18/2014 11:11 PM, Rich E wrote: On Mon, Jan 13, 2014 at 5:35 PM, Dan Wilcox

Re: [PD] smooth random numbers

2014-02-22 Thread Ingo
This one can be retriggered to change speed anytime. Ingo #N canvas 988 0 345 419 10; #X obj 71 135 random 128; #X obj 71 108 metro 5000; #X obj 71 90 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 1 1 ; #X obj 71 189 line; #X obj 71 209 i; #X obj 71 162 pack f 5000; #X msg 254 32 5000; #X

Re: [PD] libpd separating gui from core

2014-02-22 Thread Jonathan Wilkes
I'm just having trouble with the specifics.  Do you have an example of a patch that suffers from Pd's current single-threaded implementation that would be measurably improved by using a multi-threaded approach?  Also, what is the metric to use here? To compare apples to apples, imagine that

[PD] iem_sqrt4~ crashes on linux 6 bit

2014-02-22 Thread Billy Stiltner
hey iem_qrt4~.pd_linux crashes the newest pd-extended as well as the latest pd source from sourceforge on ubuntu studio 13.04. I didn't want to mess with trying to figure out how to fix the source so I just made an iem_sqrt4~.pd that has a sqrt~ inside now all the iemlib vcf filters work .

Re: [PD] libpd separating gui from core

2014-02-21 Thread Jonathan Wilkes
On 02/20/2014 09:50 PM, Rich E wrote: On Wed, Feb 19, 2014 at 12:07 AM, Jonathan Wilkes jancs...@yahoo.com mailto:jancs...@yahoo.com wrote: On 02/18/2014 11:11 PM, Rich E wrote: On Mon, Jan 13, 2014 at 5:35 PM, Dan Wilcox danomat...@gmail.com mailto:danomat...@gmail.com

Re: [PD] libpd separating gui from core

2014-02-21 Thread Charles Goyard
Hi, just to give some example of single vs multi-threaded, and some comparison points. - projects like haproxy and lighthttpd show that good state machine programming can be more efficient that multi-threaded programming, even on multi-core computers. BUT they handle a much reduced number of use

Re: [PD] libpd separating gui from core

2014-02-21 Thread Simon Wise
On 21/02/14 20:41, Charles Goyard wrote: Hi, just to give some example of single vs multi-threaded, and some comparison points. - projects like haproxy and lighthttpd show that good state machine programming can be more efficient that multi-threaded programming, even on multi-core computers.

Re: [PD] Workshop on Audio Plug-Ins Design in Faust (Romain Michon)

2014-02-21 Thread Bart Brouns
Hi, Faust is is a great complement to pd, as it makes light work of some things that are hard or impossible in pd, like good documentation, sharing programs, and 1 sample feedback loops. Will the course material be available online? Best, Bart. On Thu, 2014-02-20 at 12:00 +0100,

Re: [PD] libpd separating gui from core

2014-02-21 Thread Charles Goyard
Hi, In the case of PD, maybe just a good mix of libpd and a generalization of pd~ can improve things much. [pd~] deals with the particular case of creating an extra dsp thread, it incurs overhead to do so and does not isolate the dsp from a busy patch. It is quite orthogonal to creating

Re: [PD] t_scalar member sc_vec

2014-02-21 Thread Charles Goyard
Hi, Sorry for this question, but why isn't sc_vec a good old pointer ?     t_gobj sc_gobj; /* header for graphical object */     t_symbol *sc_template;  /* template name (LATER replace with pointer) */     t_word sc_vec[1];   /* indeterminate-length array of words */ } t_scalar;

Re: [PD] Game Audio abstractions- how to publish?

2014-02-21 Thread Filippo Beck Peccoz
Hi Tony, just put it on Github- hope I did everything right :) https://github.com/fbpsound/pip_abstractions . Will be working on the help patches this WE. Thanks again for your input! Cheers, Filippo On Feb 19, 2014, at 4:36 PM, Tony Hillerson tony.hiller...@gmail.com wrote: Filippo,

Re: [PD] t_scalar member sc_vec

2014-02-21 Thread Ivica Bukvic
Because this way you can reference data points with sc_vec+n as opposed to dealing with single or double linked lists (since sc_vec can be an array). On Feb 21, 2014 7:26 AM, Charles Goyard c...@fsck.fr wrote: Hi, Sorry for this question, but why isn't sc_vec a good old pointer ? t_gobj

[PD] how can you know if [pix_fiducialtrack] tracks a shape or not?

2014-02-21 Thread Alexandros Drymonitis
Once [pix_fiducialtrack] tracks a shape, you get a list which is the shape's ID, x/y coordinates and rotation angle. Once a certain shape has been tracked, how can you tell the difference between the shape being still and not being visible by the camera? Can you obtain any data for a shape

Re: [PD] t_scalar member sc_vec

2014-02-21 Thread Jonathan Wilkes
On 02/21/2014 09:00 AM, Ivica Bukvic wrote: Because this way you can reference data points with sc_vec+n as opposed to dealing with single or double linked lists (since sc_vec can be an array). If sc_vec is a pointer then you can access data points using the same technique, which is

Re: [PD] libpd separating gui from core

2014-02-21 Thread Jonathan Wilkes
On 02/21/2014 06:41 AM, Simon Wise wrote: On 21/02/14 20:41, Charles Goyard wrote: Hi, just to give some example of single vs multi-threaded, and some comparison points. - projects like haproxy and lighthttpd show that good state machine programming can be more efficient that multi-threaded

Re: [PD] t_scalar member sc_vec

2014-02-21 Thread Miller Puckette
It's more efficient (especially in terms of memory) to keep the two things contiguously in memory than to have to chase an additional pointer to the array. In C it looks almost the same (arrays and their pointers are both specified by naming the arraym but sizeof will act differently for

[PD] CUTE 2014 workshop, March 12-15, Mons, Belgium

2014-02-21 Thread Miller Puckette
Hi all - THere's a free 4-day workshop March 12-15 in Mons, Belgium, given by Sebastien Rooy, Christophe d'Alessandro, Marc Leman, and me: http://checkthis.com/cute2014 (Marc and I will operate in Englich and Sebastien and Christophe in French). THere's a sign-up page here:

[PD] threads in pd, dataflow

2014-02-21 Thread Simon Wise
On 22/02/14 06:28, Jonathan Wilkes wrote: On 02/21/2014 06:41 AM, Simon Wise wrote: Something to really make pd parallel would involve treating fan-outs as opportunities for the interpreter to launch each branch in a new thread, implementing the inherent parallelism in the dataflow paradigm

[PD] armonic properties of another sound

2014-02-20 Thread flad chester
Hi, how can i give the armonic properties from one sound to another sound? I need to apply the armonic properties from a sound to another percusive sound that doesnt has a defined frequency ( noise) . Which is the best way of achieving this in pd? cheers F.

Re: [PD] armonic properties of another sound

2014-02-20 Thread José Rafael Subía Valdez
I would use Cross-Synthesis... if you are in pd-ext 0.43, replace [ezdac] with [output~] On Thu, Feb 20, 2014 at 12:36 PM, flad chester flad.ches...@gmail.comwrote: Hi, how can i give the armonic properties from one sound to another sound? I need to apply the armonic properties from a sound

[PD] t_scalar member sc_vec

2014-02-20 Thread Jonathan Wilkes
Can anyone explain what's going on with this in m_pd.h: typedef struct _scalar  /* a graphical object holding data */ {     t_gobj sc_gobj; /* header for graphical object */     t_symbol *sc_template;  /* template name (LATER replace with pointer) */     t_word sc_vec[1];   /*

Re: [PD] libpd separating gui from core

2014-02-20 Thread Rich E
On Wed, Feb 19, 2014 at 12:07 AM, Jonathan Wilkes jancs...@yahoo.comwrote: On 02/18/2014 11:11 PM, Rich E wrote: On Mon, Jan 13, 2014 at 5:35 PM, Dan Wilcox danomat...@gmail.com wrote: Ah wait, duh. Of course the graph needs to know positioning, that's how it determines execution order

Re: [PD] t_scalar member sc_vec

2014-02-20 Thread Miller Puckette
Hi all - I don't know if this is a reasonable thing to do in 2014 - it's a coding trope I learned around 1981. As far as I know C has no clean way to describe a packed data structure with a header and then a variable number of identical elements (like a soundfile with a header followed by

Re: [PD] Wich licence?

2014-02-19 Thread Julian Brooks
Hey Mario, Congratulations on your work. There's been various projects to get kids involved with Pd and yours is an approach that does that very well with both humour and fun. Jb On 18 February 2014 19:54, Mario Mey mario...@gmail.com wrote: Right, I put GPL license, I think it is the best

Re: [PD] Game Audio abstractions- how to publish?

2014-02-19 Thread Max
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 2014년 02월 17일 06:31, schrieb Filippo Beck Peccoz: Let me know if there is anything that can/should/must be improved in order for it to be of any use! I'd like to make help patches for the abstraction as well, but am not sure if they really need

Re: [PD] Game Audio abstractions- how to publish?

2014-02-19 Thread Filippo Beck Peccoz
Hi Max, thanks for your feedback, that's exactly what I need to know and don't yet! :) I'll make help patches for all of the abstractions. As far as I know, it suffices to name the patch name-help.pd, and put it in the same folder, right? Also, where can I edit the metadata and what can you

Re: [PD] Game Audio abstractions- how to publish?

2014-02-19 Thread Tony Hillerson
Filippo, you should put it up on Github. I can help if you need it... -- Tony Hillerson On Tuesday, February 18, 2014 at 22:07 PM, pd-list-requ...@iem.at wrote: Send Pd-list mailing list submissions to pd-list@iem.at (mailto:pd-list@iem.at) To subscribe or unsubscribe via the World Wide

[PD] Workshop on Audio Plug-Ins Design in Faust

2014-02-19 Thread Romain Michon
Hi Folks, I'll be giving a workshop on Audio Plug-Ins Design in Faust this summer at the Center for Computer Research in Music and Acoustics (Stanford University, USA) this summer (Mon, 07/07/2014 - Fri, 07/11/2014). Faust can be used to easily create PD externals so I thought that this event

Re: [PD] libpd separating gui from core

2014-02-18 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-02-17 22:42, Jonathan Wilkes wrote: No sane person is going to do incremental work without a plan on GUI software in 2014 that only has a single undo. luckily the work on the GUI will most likely happen in git, which gives you infinite

Re: [PD] Game Audio abstractions- how to publish?

2014-02-18 Thread Joe White
Nice one Filippo! Thanks for sharing Cheers, Joe On 16 February 2014 21:31, Filippo Beck Peccoz m...@fbpsound.com wrote: Hello list, I've collected and cleaned up a few patches that I've been using a lot while making game audio with PD (mainly for Android, using libpd, Unity and Kalimba)

Re: [PD] Wich licence?

2014-02-18 Thread Mario Mey
Right, I put GPL license, I think it is the best for this project. I uploaded it here: http://puredata.hurleur.com/viewtopic.php?pid=40358#p40358 You can see MEH-SYSTEM on stage and with full success, here: https://www.youtube.com/watch?v=ckKg_rS5ezQ Thanks everybody! On 16/02/14 02:03,

Re: [PD] libpd separating gui from core

2014-02-18 Thread Rich E
On Mon, Jan 13, 2014 at 5:35 PM, Dan Wilcox danomat...@gmail.com wrote: Ah wait, duh. Of course the graph needs to know positioning, that's how it determines execution order or independent blocks of objects right? On Jan 13, 2014, at 5:14 PM, Dan Wilcox danomat...@gmail.com wrote: Does the

Re: [PD] libpd separating gui from core

2014-02-18 Thread Jonathan Wilkes
On 02/18/2014 04:00 AM, IOhannes m zmoelnig wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-02-17 22:42, Jonathan Wilkes wrote: No sane person is going to do incremental work without a plan on GUI software in 2014 that only has a single undo. luckily the work on the GUI will

Re: [PD] libpd separating gui from core

2014-02-18 Thread Jonathan Wilkes
On 02/18/2014 11:11 PM, Rich E wrote: On Mon, Jan 13, 2014 at 5:35 PM, Dan Wilcox danomat...@gmail.com mailto:danomat...@gmail.com wrote: Ah wait, duh. Of course the graph needs to know positioning, that's how it determines execution order or independent blocks of objects

[PD] disable auto-connect with jackd

2014-02-17 Thread stéfan piat
hello, I was wondering if there is a way to avoid puredata to auto connect with jack ? I saw there is a patch to disallow autconnect from jack http://lists.puredata.info/pipermail/pd-list/2013-04/102205.html but is there no way (still) to do it from pd ? thanks, stéfan

Re: [PD] Wich licence?

2014-02-17 Thread Julian Brooks
Hey Patrick, ipoke is here: http://puredata.info/Members/ipoke/ On 14 February 2014 17:48, Pagano, Patrick p...@digitalworlds.ufl.eduwrote: Mario i looked at the MEH System and i would like to see if i can get it running. Does it work on OSX? IS There a place where i can get all the parts

[PD] [PD-announce] 2nd CfP, International Workshop on Movement and Computing (MOCO14), Ircam, Paris France Jun 16-17 2014

2014-02-17 Thread Miles Thorogood
Title: 2nd CfP, International Workshop on Movement and Computing (MOCO14), Ircam, Paris France Jun 16-17 2014. == Dear All, We would like to announce the following Call for Papers for the International Workshop on Movement and Computing

Re: [PD] libpd separating gui from core

2014-02-17 Thread Hans-Christoph Steiner
I think that the way forward with the pd/gui separation is to work on the low hanging fruit, things that are easy to fix. Let the hard parts for later, which will only be a couple areas. So that means looking at everywhere where sys_gui() or sys_vgui() is called, and seeing how the raw Tcl

[PD] [PD-announce] Amsterdam Patching Circle

2014-02-17 Thread dreamer
This Thursday we are starting a new bi-weekly patching circle at the LAG hacklab - http://laglab.org/ For those without a laptop we have workstations with pd-extended available. Spread the word to your friends and come by if you are interested :) cheers, drmr

[PD] [PD-announce] Open Call for Capsules. 1st Design and Digital Culture Conference

2014-02-17 Thread Medialab-Prado Comunicación
*MEDIALAB-PRADO* *Plaza**de las Letras** **Calle Ala**meda, 15** **28014 Madrid T. 912 191 157** www.medialab-prado.es** Entrada gratuita* ** #edcd. Open Call for Capsules. 1st Design and Digital Culture Conference Open call for the submission of capsules or short talk on

Re: [PD] libpd separating gui from core

2014-02-17 Thread Jonathan Wilkes
On 02/17/2014 10:48 AM, Hans-Christoph Steiner wrote: I think that the way forward with the pd/gui separation is to work on the low hanging fruit, things that are easy to fix. Let the hard parts for later, which will only be a couple areas. So that means looking at everywhere where sys_gui()

Re: [PD] Wich licence?

2014-02-16 Thread IOhannes m zmölnig
On 02/15/2014 08:52 PM, Mario Mey wrote: Maybe I leave it as is. Saying nothing about license... then you implicitely chose a rather restrictive license: all rights reserved. fgmdsar IOhannes signature.asc Description: OpenPGP digital signature ___

Re: [PD] Receiving a compressed audio stream with PD.

2014-02-16 Thread IOhannes m zmölnig
On 02/15/2014 06:08 PM, Rafael Vega wrote: OK, I just found [oggamp~] which means I need to setup a ogg/vorbis server or something similar. I think I can handle that. that's a bit of an overkill if you just want to play back compressed audio. checkout out [mp3play~] and [readanysf~]. the latter

[PD] Is Audio Settings Use Multiple Devices available on Mac OSX?

2014-02-16 Thread Santiago J. Barro Torres
Hello everybody, My name is Santiago, and I am an embedded software engineer. I have been playing around Pure Data for some time, and now I would like to further develop my skills on Music Design // Music Programming. I am working with three versions of pd: Windows, Linux and Mac OSX.

Re: [PD] Is Audio Settings Use Multiple Devices available on Mac OSX?

2014-02-16 Thread Miller Puckette
Hi Santiago - Pd uses Portaudio to talk to CoreAudio. It loks like there's no reason one couldn't fix the code to offer multiple devices (although it still wouldn't work for Portaudio/ASIO because ASIO apparently doesn't permit it). One reason I haven't done that is that Soundflower (if I

Re: [PD] Is Audio Settings Use Multiple Devices available on Mac OSX?

2014-02-16 Thread Daniel Nigrin
For OS X, use Aggregate Devices. Go to Audio MIDI Setup, click the little + in the lower left corner, and select Create Aggregate Device. This will allow you to group your various input and output devices, and have them presented to whatever software as a single device. Hope that helps, Dan --

Re: [PD] Is Audio Settings Use Multiple Devices available on Mac OSX?

2014-02-16 Thread Santiago J. Barro Torres
Hi Miller and Daniel, Thanks for your answers. But I am not sure if we are talking about the same thing. What is the relationship with the i.e. selected input device and the object [adc~]? I guess that there is a mapping between the outside world (either a physical sound card or a sound server)

Re: [PD] Is Audio Settings Use Multiple Devices available on Mac OSX?

2014-02-16 Thread Alexandros Drymonitis
Set the number of channels in the Audio Settings and then use [adc~ 1 2] for the first two channels, [adc~ 3 4] for the other two etc. Whatever number you set as an argument to [adc~] will be the sound card's channel number, starting from one, but you first have to set that in the audio settings.

Re: [PD] Is Audio Settings Use Multiple Devices available on Mac OSX?

2014-02-16 Thread Santiago J. Barro Torres
Hi Alexandros, Yes, that works fine! That was what I was looking for. I thank you all for your help. On Sun, Feb 16, 2014 at 9:23 PM, Alexandros Drymonitis adr...@gmail.comwrote: Set the number of channels in the Audio Settings and then use [adc~ 1 2] for the first two channels, [adc~ 3 4]

[PD] Game Audio abstractions- how to publish?

2014-02-16 Thread Filippo Beck Peccoz
Hello list, I've collected and cleaned up a few patches that I've been using a lot while making game audio with PD (mainly for Android, using libpd, Unity and Kalimba) and wanted to make them available to everyone. Giving a tiny bit back since I've received so much help and advice from the PD

Re: [PD] No basic objects in pd-extended from sf git-repo

2014-02-16 Thread Hans-Christoph Steiner
Check out this and other docs in that section: http://puredata.info/docs/developer/BuildingPdExtended .hc On Jan 30, 2014, at 6:52 AM, John Smith wrote: Hello. What I need to to for build pd-extended from sourceforge git right way? I compiled and installed pd-extended from git, but as I see

Re: [PD] Wich licence?

2014-02-15 Thread Marco Donnarumma
Hey, it depends what kind of restrictions are you talking about. A program is free software when guarantees: - The freedom to run the program, for any purpose (freedom 0). - The freedom to study how the program works, and change it so it does your computing as you wish (freedom 1). Access to

[PD] Receiving a compressed audio stream with PD.

2014-02-15 Thread Rafael Vega
Hi list :) I'm building a patch where I need to use 50 audio files. Each one is about 12:50 minutes, I encoded them as 16 bit, 44,1KHz, mono and in total they are taking about 3.3GB. I would like to distribute my patch packaged as a QT application using libpd and the total file size of the

Re: [PD] Receiving a compressed audio stream with PD.

2014-02-15 Thread Rafael Vega
OK, I just found [oggamp~] which means I need to setup a ogg/vorbis server or something similar. I think I can handle that. Now, what do you guys suggest? A single 50-channel stream or 50 mono streams? I'm guessing in the latter option, I'll have a hard time trying to sync the 50 streams. Also,

Re: [PD] Wich licence? (MEH-SYSTEM on OSX)

2014-02-15 Thread Mario Mey
I didn't run it in OSX, but I think it's OK. This person is right: On 14/02/14 22:42, pured...@11h11.com wrote: for [routeOSC] add [import mrpeach] somewhere (you need pd-extended). And ipoke2~ is a modified version of ipoke~ from Katja... as in the thread says, it is compiled for Linux 64.

Re: [PD] Wich licence?

2014-02-15 Thread Mario Mey
On 14/02/14 15:45, Jonathan Wilkes wrote: How would that be any different than spyware? -Jonathan Haha! Good point! Thanks everybody for the answers. I took a look to Matt Davey's DIY2 effects and he put no license txt file on its folder. Maelstorm mmb libraries have no license too... My

Re: [PD] Wich licence?

2014-02-15 Thread olm-e
On 15/02/14 20:53, pd-list-requ...@iem.at wrote: Date: Sat, 15 Feb 2014 16:52:58 -0300 From: Mario Mey mario...@gmail.com Subject: Re: [PD] Wich licence? To: pd-list@iem.at Message-ID: 52ffc59a.4030...@gmail.com Content-Type: text/plain; charset=ISO-8859-1; format=flowed On 14/02/14 15:45,

[PD] [PD-announce] NYC Patching Circles Coming Back!

2014-02-15 Thread Hans-Christoph Steiner
Hello All, Sofy booked two nights at NYU We changed the format slightly to include a moment for performance. Feb 28 at 6:30pm April 11 at 6:30pm The New York City Patching Circle is an free alternating monthly meeting and salon open to anyone who is working or interested in media programming

Re: [PD] [PD-announce] NYC Patching Circles Coming Back!

2014-02-15 Thread Marc Demers
Hi, I am off the point but there is no more pd-extended nightly built version? Regards, mdd -Message d'origine- De : pd-list-boun...@iem.at [mailto:pd-list-boun...@iem.at] De la part de Hans-Christoph Steiner Envoyé : samedi 15 février 2014 15:15 À : pd-announce Objet : [PD]

Re: [PD] Wich licence?

2014-02-15 Thread Jonathan Wilkes
On 02/15/2014 03:14 PM, olm-e wrote: On 15/02/14 20:53, pd-list-requ...@iem.at wrote: Date: Sat, 15 Feb 2014 16:52:58 -0300 From: Mario Mey mario...@gmail.com Subject: Re: [PD] Wich licence? To: pd-list@iem.at Message-ID: 52ffc59a.4030...@gmail.com Content-Type: text/plain; charset=ISO-8859-1;

Re: [PD] pix_video or OSX

2014-02-14 Thread IOhannes m zmölnig
On 02/14/2014 12:28 AM, Mateo De Los Ríos wrote: Hi List, I'm using pix_video to open a old Sony Mini DV. It used to work fine but now I'm getting the image in colorspace YUV regardless of messaging colorspace RGBA. [colorspace RGBA( does not force the colorspace, it just tries to get

[PD] Wich licence?

2014-02-14 Thread Mario Mey
I made a Multi-FX Looper called MEH-SYSTEM, posted in PD Forum: http://puredata.hurleur.com/viewtopic.php?pid=37430 I want to put a license to it. Where should I get information about types of licences? I don't think in any restriction... I only would want to know where, when, how and

Re: [PD] Wich licence?

2014-02-14 Thread Charles Goyard
Mario Mey wrote: I want to put a license to it. Where should I get information about types of licences? I don't think in any restriction... Go for public domain then. I only would want to know where, when, how and by-who it was used. Only that. Cardware licence : Postcardware, also

Re: [PD] Wich licence?

2014-02-14 Thread Pagano, Patrick
Mario i looked at the MEH System and i would like to see if i can get it running. Does it work on OSX? IS There a place where i can get all the parts in one place? Here is my current pd window on OSX, looks like it's missing ipoke and some OSC stuff is not working correctly routeOSC /1 /2 /3

Re: [PD] Wich licence?

2014-02-14 Thread puredata
for [routeOSC] add [import mrpeach] somewhere (you need pd-extended). ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Wich licence?

2014-02-14 Thread Jonathan Wilkes
On 02/14/2014 08:16 AM, Mario Mey wrote: I made a Multi-FX Looper called MEH-SYSTEM, posted in PD Forum: http://puredata.hurleur.com/viewtopic.php?pid=37430 I want to put a license to it. Where should I get information about types of licences? I don't think in any restriction... I only

[PD] Pos1 and End in keyboard editing

2014-02-14 Thread Peter P.
Dear list, this has probably been discussed already (didn't find sth after a quick search in the archive though): When using the computer keyboard's Pos1 and End keys to jump to the beginning of an object or numberbox when editing its contents, will make the cursor move there, but upon typing new

Re: [PD] Pos1 and End in keyboard editing

2014-02-14 Thread Brian Fay
It's been like that for as long as I can remember, and I hate it!!! I've just assumed it was some tcl/tk quirk that has kept it from being changed, but I really don't have a clue as I have no desire to learn tcl/tk... -Brian On Fri, Feb 14, 2014 at 4:43 PM, Peter P. p8...@aol.com wrote: Dear

Re: [PD] Wich licence?

2014-02-14 Thread Thomas Mayer
Hi, On 14.02.2014 14:16, Mario Mey wrote: I made a Multi-FX Looper called MEH-SYSTEM, posted in PD Forum: http://puredata.hurleur.com/viewtopic.php?pid=37430 I want to put a license to it. Where should I get information about types of licences? A starter can be http://choosealicense.com/ I

Re: [PD] Pos1 and End in keyboard editing

2014-02-14 Thread Ivica Ico Bukvic
In pd-l2ork you can do that and also use ctrl+home/end (or arrow left/right) to navigate between spaces inside a multi-arg text, as well as between multiple lines of comments for instance, since pd-l2ork also supports saving endlines inside comments. HTH From: pd-list-boun...@iem.at

Re: [PD] Pos1 and End in keyboard editing

2014-02-14 Thread Peter P.
* Ivica Ico Bukvic i...@vt.edu [2014-02-15 01:00]: In pd-l2ork you can do that and also use ctrl+home/end (or arrow left/right) to navigate between spaces inside a multi-arg text, as well as between multiple lines of comments for instance, since pd-l2ork also supports saving endlines inside

Re: [PD] Pos1 and End in keyboard editing

2014-02-14 Thread Peter P.
* Brian Fay ovaltinevor...@gmail.com [2014-02-15 00:52]: It's been like that for as long as I can remember, and I hate it!!! Ok, then I will Calm down and carry on(tm). Thanks! P ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

[PD] Malinette - rapid prototyping and learning

2014-02-13 Thread abel . jerome
Hi all, We released a new version of the Malinette : http://reso-nance.org/malinette/download/ Malinette is an all-in-one solution, a rapid prototyping tool to show and make simple interaction and multimedia projects. It is a software and a hardware set. The software is based on Pure Data

Re: [PD] vst~ for OSX, any update?

2014-02-13 Thread yvan volochine
On 13/02/14 06:49, Chris Clepper wrote: SuperCollider hosts AudioUnits, but given James' day job that is not surprising. for the record, AU support in supercollider is not really maintained anymore, it will only work on sc-3.5 and osx 10.8.. (current sc version is sc-3.7-dev, 3.5 starts

[PD] Fwd: pd gui: partial interface freeze

2014-02-13 Thread Billy Stiltner
-- Forwarded message -- From: Billy Stiltner billy.stilt...@gmail.com Date: Wed, Feb 12, 2014 at 1:13 PM Subject: Re: [PD] pd gui: partial interface freeze To: Py Fave pyf...@gmail.com I have the same problem , both recordings I did last night crashed, I think it's the number of

Re: [PD] mrpeach/net iemnet and other way to get file from the net

2014-02-13 Thread Cyrille Henry
hello Martin, thanks a lot for the quick fix. It did not crash any more on my 64b linux computer. we will perform long term stability test. thanks cheers cyrille Le 12/02/2014 19:46, Martin Peach a écrit : On 2014-02-12 11:51, Martin Peach wrote: It looks like a 64-bit issue. If it really

Re: [PD] Fwd: pd gui: partial interface freeze

2014-02-13 Thread Joe Newlin
I've had the same problem frequently with GUI-heavy patches. For what it's worth, minimizing restoring the window will display updated GUIs, but the pixels will continue to be frozen until I minimize restore again. After removing about 90% of the GUI objects from one particular patch that did

[PD] [PD-announce] PhD Positions in AI / Computational Models for Movement Recognition and Generation at Simon Fraser University.

2014-02-13 Thread Miles Thorogood
= *Subject:*PhD Positions in AI / Computational Models for Movement Recognition and Generation at Simon Fraser University. Application deadline: March 1^st 2014 We are pleased to announce a PhD position in AI / Computational Models for Movement at the School of

[PD] increasing zone of inlet / outlet

2014-02-13 Thread puredata
Hi all, I am getting older and it's more and more difficult to click right on the inlet or outlet. How to change increase the zone around them? I am using PD-0.43.4-extended. Thanks ___ Pd-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] increasing zone of inlet / outlet

2014-02-13 Thread Jonathan Wilkes
You'd have to tweak the stuff in g_text.c and probably also g_rtext.c to lie about the rectangle size, and to enlarge the bbox for what gets counted as an xlet, then recompile. Meanwhile, there's a single tk canvas subcommand called -closeenough that does exactly what you want.  But Pd doesn't

[PD] filter-graph and lop~ phase

2014-02-13 Thread Peter P.
Hi list, just wondering if I am getting something wrong plotting the phase response of lop~ using the abstractions filter-graph1.pd and filter-graph2.pd as exemplified in 3.audio.examples/H10.measurement.pd For a simple one-zero lowpass filter using [rzero~ -1] the phase response is plotted

<    5   6   7   8   9   10   11   12   13   14   >