Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread Alexandros Drymonitis
I tried your patch and the problem you mention does occur. I've no idea why and how to solve this, but I'm also getting some strange behavior with live patching. In my case [loadbang] won't work... On Mon, Nov 12, 2012 at 5:29 PM, Ángel Faraldo angelfara...@gmail.comwrote: Hi List, I've been

Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread i go bananas
The answer to the original question has been posted many times over the years. On Wednesday, November 14, 2012, Alexandros Drymonitis wrote: I tried your patch and the problem you mention does occur. I've no idea why and how to solve this, but I'm also getting some strange behavior with live

Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread Cyrille Henry
Le 12/11/2012 16:29, Ángel Faraldo a écrit : Hi List, I've been increasingly working with dynamic patching and there is an issue that don't understand in relation with creating multiple audio abstractions... Imagine I put an oscillator inside an abstraction and I recall one instance of it

Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread Cyrille Henry
Le 14/11/2012 11:30, Alexandros Drymonitis a écrit : I tried your patch and the problem you mention does occur. I've no idea why and how to solve this, but I'm also getting some strange behavior with live patching. In my case [loadbang] won't work... when sending message to pd to create

Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread Alexandros Drymonitis
Or use [initbang]...after i go banana's reply I searched a bit and found out that my question has also been answered. It won't be vanilla though, but anyway I'm using extended.. Cheers On Wed, Nov 14, 2012 at 12:54 PM, Cyrille Henry c...@chnry.net wrote: Le 14/11/2012 11:30, Alexandros

Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread Ángel Faraldo
Thanks for your replies, indeed I was reading on the list and there are various threads on this topic. Apologies for re-asking old threads. In my current project, I wasn't planning to create the objects with messages (obj ... ... ..., i.e. dynamic patching) but manually adding objects which

[PD] Random number generation quest

2012-11-14 Thread Enrique Erne
Hi List! Can a random number form 0 to 100 be generated with the following requirements: - No externals / Vanilla Pd only - DSP must be off - The patch is loaded with Pd through command line interface i.e. `pd -noprefs -nogui givemerandom.pd` - The output should not always be the same

Re: [PD] Random number generation quest

2012-11-14 Thread Roman Haefeli
On Wed, 2012-11-14 at 14:53 +, Enrique Erne wrote: Hi List! Can a random number form 0 to 100 be generated with the following requirements: - No externals / Vanilla Pd only - DSP must be off - The patch is loaded with Pd through command line interface i.e. `pd -noprefs -nogui

Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread Enrique Erne
You could try https://github.com/thisconnect/pddom It should take care about: - updating DSP tree after adding removing an abstraction - firing loadbang - sets senders and receivers so you can send a signal from one abstraction directly to the next one On Wed, Nov 14, 2012 at 12:41 PM, Ángel

[PD] Massive Multichannel system

2012-11-14 Thread Fabio Kaiser
Hi, I want to build an computer audio mixing/processing system based on PD. My questions are mainly concerned with the stability and reliability of the system. So what do I need to do to make a software design in PD stable? The software should be able to do some calculations, equalization

Re: [PD] Random number generation quest

2012-11-14 Thread Pierre Massat
Hi, You could use the [shell] object to run a little bash script that would ask the current time in milliseconds from your system, and send it as a seed to Pd using pdsend. This way you wouldn't need any extra command line arguments. I don't know whether this is worth the trouble, though.

Re: [PD] Random number generation quest

2012-11-14 Thread Lorenzo Sutton
On 14/11/12 15:53, Enrique Erne wrote: Hi List! Can a random number form 0 to 100 be generated with the following requirements: - No externals / Vanilla Pd only - DSP must be off - The patch is loaded with Pd through command line interface i.e. `pd -noprefs -nogui givemerandom.pd`

Re: [PD] Random number generation quest

2012-11-14 Thread Andrew Faraday
Hi Is the [time] object in pd-vanilla? If so you could use the milliseconds output as your seed... [loadbang] |[time]| (milliseconds) [random] Date: Wed, 14 Nov 2012 14:53:44 + From: enri...@netpd.org To: pd-list@iem.at Subject: [PD] Random number generation quest Hi List!

Re: [PD] Random number generation quest

2012-11-14 Thread Jack
Le 14/11/2012 18:30, Andrew Faraday a écrit : Hi Is the [time] object in pd-vanilla? If so you could use the milliseconds output as your seed... [loadbang] | [time] | (milliseconds) [random] Date: Wed, 14 Nov 2012 14:53:44 + From: enri...@netpd.org To:

Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread Jonathan Wilkes
- Original Message - From: Cyrille Henry c...@chnry.net To: pd-list@iem.at Cc: Sent: Wednesday, November 14, 2012 5:49 AM Subject: Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work) Le 12/11/2012 16:29, Ángel Faraldo a écrit : Hi List,

Re: [PD] weird behavior with dynamically created abstractions (sound doesn't work)

2012-11-14 Thread Ángel Faraldo
Hey, that looks very interesting! Thanks Enrique On 14/11/2012, at 16:14, Enrique Erne wrote: You could try https://github.com/thisconnect/pddom It should take care about: - updating DSP tree after adding removing an abstraction - firing loadbang - sets senders and receivers so you can

Re: [PD] Random number generation quest

2012-11-14 Thread Kaj Ailomaa
On Wed, 14 Nov 2012 15:53:44 +0100, Enrique Erne enri...@netpd.org wrote: Hi List! Can a random number form 0 to 100 be generated with the following requirements: - No externals / Vanilla Pd only - DSP must be off - The patch is loaded with Pd through command line interface i.e. `pd

Re: [PD] Random number generation quest

2012-11-14 Thread Jonathan Wilkes
Here's one that works in real time by building a subpatch with some objects, measuring that time, using that measurement to create and clear the subpatch anywhere from 0-9 more times, then multiplying the sum of all this time for the seed to [random]. Obviously if you create a complex object like

Re: [PD] Random number generation quest

2012-11-14 Thread i go bananas
i used something like kaj posted. It seemed to work ok. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Broken deb in autobuild repo

2012-11-14 Thread Hans-Christoph Steiner
On 11/09/2012 02:52 PM, András Murányi wrote: Hey, http://apt.puredata.info/autobuild/latest/Pd-0.43.1-extended-ubuntu-lucid-i386.debseems to be a broken file, as well as the one at http://apt.puredata.info/autobuild/2012-08-15/Pd-0.43.1-extended-20120815-ubuntu-lucid-i386.deb The last

[PD] translation support for search plugin

2012-11-14 Thread Hans-Christoph Steiner
Hey Jonathan, It would be very nice for people to be able to translate the Search Plugin into whatever language they want. Mostly that means surrounding every string with [_ ], then the translation tools to the rest. There are some strings in the current plugin that are setup this way, but

Re: [PD] Issue with [shell] and jack_connect/disconnect

2012-11-14 Thread michael noble
On Wed, Nov 14, 2012 at 1:43 PM, Hans-Christoph Steiner h...@at.or.atwrote: On 11/13/2012 10:13 PM, michael noble wrote: On Tue, Nov 13, 2012 at 2:07 PM, Hans-Christoph Steiner h...@at.or.at wrote: I added the possibility of putting the connection description in the object box.

Re: [PD] translation support for search plugin

2012-11-14 Thread Jonathan Wilkes
- Original Message - From: Hans-Christoph Steiner h...@at.or.at To: Pd List pd-list@iem.at Cc: Sent: Thursday, November 15, 2012 12:48 AM Subject: [PD] translation support for search plugin Hey Jonathan, It would be very nice for people to be able to translate the Search