Re: [PD] Gem on win7 64 bit

2012-10-30 Thread João Pais
I have a related (?) problem, I can create the gem window, but nothing gets rendered (just a black screen). Servando suggested to update the video driver, but I didn't do that yet. maybe that would help? I submitted a gem bug, but I think iohannes didn't react to it yet. Am 29.10.2012 um

Re: [PD] Gem on win7 64 bit

2012-10-30 Thread Cyrille Henry
hello, sorry if that sound obvious but it's not clear on your mail : creating the gem window did not start the rendering, you have to send 1 to gemwin in order to have anything else than a black screen... is that what you did? cheers c Le 30/10/2012 13:02, João Pais a écrit : I have a

[PD] live patching with new instances of abstractions

2012-10-30 Thread Alexandros Drymonitis
Hi all, I've been trying to make a patch where I can create connections of subpatches on the fly. These subpatches contain abstractions (for now the same abstracion everywhere, whcih is [inlet~] , only to check if what I wanna do is possible). [outlet~] I've

Re: [PD] live patching with new instances of abstractions

2012-10-30 Thread Alexandros Drymonitis
Hm, didn't think that the text line length would change. The objects in the parentheses are meant to be like this: [inlet~] [outlet~] On Tue, Oct 30, 2012 at 5:32 PM, Alexandros Drymonitis adr...@gmail.comwrote: Hi all, I've been trying to make a patch where I can create connections of

Re: [PD] PKGBUILD of pd-extended 0.43-4 for Archers

2012-10-30 Thread Charles Goyard
Hi, nice job, thank you. Fero Kiraly wrote: Dear friends, I try to manage PKGBUILD of latest Pd-extended (svn git) + latest Gem (git) for arch. For me it's running, what makes me happy because I am one of the new Archers. What you can do is let the compiler optimize a bit for i686, since

Re: [PD] Routing MIDI on windows machines?

2012-10-30 Thread Dan Wilcox
As this is probably a question that will keep coming up, I decided to wrap up some of the answers in one of the puredata.info FAQ pages: http://puredata.info/docs/faq/midiinput Please double check this and make any changes you see fit. I know I've said this before, but we should always strive

[PD] firm delay scheduling

2012-10-30 Thread Jean-Marie Adrien
Hello I'm trying to launch security procedures in case of trouble, that will respond in less than 250 msec. The fundamental question is : Is there an object to schedule an event in the future with firm absolute delay ? {realtime} measures time AFTER the problem (no scheduling) {del} schedules

Re: [PD] firm delay scheduling

2012-10-30 Thread Hans-Christoph Steiner
[delay] is as firm as your going to get, from what I've seen. [delay] should be at least as accurate to about one audio block, so like 1.5ms, so if you only need 250ms accuracy, you have plenty of room. .hc On Oct 30, 2012, at 1:13 PM, Jean-Marie Adrien wrote: Hello I'm trying to launch

Re: [PD] 24bit file bug

2012-10-30 Thread Hans-Christoph Steiner
Its probably a good idea to file a bug report and include your patch, and a link to the previous conversation on the list: http://bugs.puredata.info Or in the Help menu, report bug .hc On Oct 29, 2012, at 7:38 PM, peiman khosravi wrote: Dear all, I reported this a few months ago and it

Re: [PD] 24bit file bug

2012-10-30 Thread peiman khosravi
Great, will do. Thanks, P On 30 October 2012 17:44, Hans-Christoph Steiner h...@at.or.at wrote: Its probably a good idea to file a bug report and include your patch, and a link to the previous conversation on the list: http://bugs.puredata.info Or in the Help menu, report bug .hc On

Re: [PD] firm delay scheduling

2012-10-30 Thread Cyrille Henry
hello, if your problem is detecting when cpu is over 100% so that delay is not acurate, then the best solution is some kind of external watchdog. just send a message every 10 ms to an other software, if this external software did not receive anything during the last 20ms, then there is a cpu

Re: [PD] 24bit file bug

2012-10-30 Thread peiman khosravi
OK, done: https://sourceforge.net/tracker/?func=detailaid=3581960group_id=55736atid=478070 For the record here's the other thread: http://comments.gmane.org/gmane.comp.multimedia.puredata.general/78636 Best, Peiman On 30 October 2012 17:48, peiman khosravi peimankhosr...@gmail.com wrote:

Re: [PD] MIDI and JACK autoconnection is a PITA...

2012-10-30 Thread Miller Puckette
Quick question... is this autoconnect problem only relevant to midi or does it also affect jack audio connections? I'd like to try to fix this but never use jack so am not sure where to start. thanks Miller On Tue, Oct 30, 2012 at 07:44:59PM +0100, Jörn Nettingsmeier wrote: johanna, simon,

Re: [PD] MIDI and JACK autoconnection is a PITA...

2012-10-30 Thread Jörn Nettingsmeier
Hi Miller, On 10/30/2012 08:05 PM, Miller Puckette wrote: Quick question... is this autoconnect problem only relevant to midi or does it also affect jack audio connections? I'd like to try to fix this but never use jack so am not sure where to start. well, for MIDI I can live with the

Re: [PD] MIDI and JACK autoconnection is a PITA...

2012-10-30 Thread IOhannes m zmölnig
On 10/30/2012 08:05 PM, Miller Puckette wrote: Quick question... is this autoconnect problem only relevant to midi or does it also affect jack audio connections? I'd like to try to fix this but never use jack so am not sure where to start. my original implementation for alsa-MIDI (which is

Re: [PD] mysterious segfault while receiving midi commands...

2012-10-30 Thread Hans-Christoph Steiner
That's a tough one to track down. One thing I'd recommend is to reduce the complexity. Specifically, [readanysf~] is a wonderful object, but relies on many many libraries and has many layers in it. This bug could have come from any one of those libraries in addition to Pd, readanysf, etc. For

Re: [PD] MIDI and JACK autoconnection is a PITA...

2012-10-30 Thread Miller Puckette
OK.. I think I can figure out how to take autoconnect out - just committed and git pushed for your inspection :) M On Tue, Oct 30, 2012 at 09:40:02PM +0100, IOhannes m zmölnig wrote: On 10/30/2012 08:05 PM, Miller Puckette wrote: Quick question... is this autoconnect problem only relevant to

Re: [PD] MIDI and JACK autoconnection is a PITA...

2012-10-30 Thread IOhannes m zmölnig
On 10/30/2012 10:45 PM, Miller Puckette wrote: OK.. I think I can figure out how to take autoconnect out - just committed and git pushed for your inspection :) just noticed how well encapsulated the autoconnect feature has been implemented. made it easy to disable :-) fgmadsr IOhannes

[PD] Browse/Search plugin update

2012-10-30 Thread Jonathan Wilkes
I updated my search plugin by adding a progressbar: http://puredata.info/Members/jancsika/searchandbrowseplugin/view It also prints out the number of files it searched.  There were some reports of a search taking over a minute, but with GNU/Linux and winxp I'm getting about 3 seconds for a

Re: [PD] firm delay scheduling

2012-10-30 Thread Jonathan Wilkes
- Original Message - From: Cyrille Henry c...@chnry.net To: pd-list@iem.at Cc: Sent: Tuesday, October 30, 2012 1:52 PM Subject: Re: [PD] firm delay scheduling hello, if your problem is detecting when cpu is over 100% so that delay is not acurate, then the best solution is

Re: [PD] firm delay scheduling

2012-10-30 Thread Simon Iten
If you have a multicore machine you should be fine... On Oct 31, 2012 12:31 AM, Jonathan Wilkes jancs...@yahoo.com wrote: - Original Message - From: Cyrille Henry c...@chnry.net To: pd-list@iem.at Cc: Sent: Tuesday, October 30, 2012 1:52 PM Subject: Re: [PD] firm delay

[PD] Pd on Lion - Chinese

2012-10-30 Thread Ed Kelly
Hi, I have a student from China, and every version of Pd I've tried on her machine either crashes or (with Pd-extended 0.42-5) hangs on load. locahost is there as far as I can tell from ifconfig The Activity Monitor application shows a red Pd-extended process, but since her computer was

Re: [PD] PKGBUILD of pd-extended 0.43-4 for Archers

2012-10-30 Thread Fero Kiraly
Because of Hans (thanks Hans) suggestion I did a NO SVN pkgbild. It should be the REAL latest version of pd-extended 0.43-x here: https://aur.archlinux.org/packages.php?ID=44798 it was born from: https://pure-data.svn.sourceforge.net/svnroot/pure-data/branches/pd-extended/0.43 --- the latest

Re: [PD] Pd on Lion - Chinese

2012-10-30 Thread Hans-Christoph Steiner
I haven't seen this before, I think I had someone from Taiwan in my class last time. One useful thing in debugging would be to do this: /Applications/Pd-0.43-extended-20121010.app/Contents/Resources/bin/pd -stderr -d 3 That will at least tell you how far into the startup procedure its

Re: [PD] PKGBUILD of pd-extended 0.43-4 for Archers

2012-10-30 Thread Hans-Christoph Steiner
Since you are not following the Pd-extended packaging (i.e. Gem from git rather than the pd-extended/0.43 branch), I think it makes more sense if you package each library individually. That is made much easier by the Library Template: https://puredata.info/docs/developer/LibraryTemplate/ It

Re: [PD] Browse/Search plugin update

2012-10-30 Thread Hans-Christoph Steiner
On 10/30/2012 07:20 PM, Jonathan Wilkes wrote: I updated my search plugin by adding a progressbar: http://puredata.info/Members/jancsika/searchandbrowseplugin/view It also prints out the number of files it searched. There were some reports of a search taking over a minute, but with

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

2012-10-30 Thread Hans-Christoph Steiner
Its included now but in 0.44: http://pure-data.git.sourceforge.net/git/gitweb.cgi?p=pure-data/pure-data;a=commit;h=153c8c9a18acb4b89bd9242f5c5dc9d03eece4e8 I included it in Pd-extended 0.43.4 also. .hc On Jul 4, 2012, at 8:58 AM, Chrissie Caulfield wrote: I posted a patch for this a while

Re: [PD] Browse/Search plugin update

2012-10-30 Thread Jonathan Wilkes
- Original Message - From: Hans-Christoph Steiner h...@at.or.at To: Jonathan Wilkes jancs...@yahoo.com Cc: PD List pd-list@iem.at Sent: Tuesday, October 30, 2012 10:38 PM Subject: Re: [PD] Browse/Search plugin update On 10/30/2012 07:20 PM, Jonathan Wilkes wrote: I updated my