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

Re: [PD] audio drops for few ms, or one sec, with jack on ubuntu (was: Mess with Pd installation on Linux)

2014-01-09 Thread yvan volochine
On 09/01/14 10:59, Alexandros Drymonitis wrote: there mention that Pd is known to have a poor Jack support... I also get clicks with Audacity, but someone mentioned that Audacity too is known to have a poor Jack support. in my experience this is not true.. both pd and audacity (and

Re: [PD] audio drops for few ms, or one sec, with jack on ubuntu (was: Mess with Pd installation on Linux)

2014-01-09 Thread yvan volochine
On 09/01/14 11:20, Alexandros Drymonitis wrote: Could it be the FFADO drivers with Pd? I still can't make it work and the answers I get from different lists are quite contradictory.. if both pd and audacity have drop outs, I'd guess that the problem comes from your jack/ffado setup.. y --

Re: [PD] Mess with Pd installation on Linux

2013-12-30 Thread yvan volochine
On 30/12/13 14:29, Alexandros Drymonitis wrote: I've realized that I need to open pd with sudo in order to have it work with jack (I also have to open jack with sudo in order to use the firewire). as IOhannes said, you _should not_ do that.. (if you do it could mean that you did not add

Re: [PD] Mess with Pd installation on Linux

2013-12-30 Thread yvan volochine
On 30/12/13 15:30, Alexandros Drymonitis wrote: Ok, I was opening jack with sudo before you posted the link, now I can indeed open it without sudo and it will see the firewire, no prob. So I'm also opening pd without sudo, but I get the same behaviour. Sometimes it works, sometimes it doesn't.

Re: [PD] Mess with Pd installation on Linux

2013-12-30 Thread yvan volochine
On 30/12/13 15:44, Alexandros Drymonitis wrote: what happens when you launch jack and in another terminal run pd normally, i.e. just `pd`.. don't you have jack in the media menu? True, just tried twice, once I got the : 'cannot activate client' in pd's console, and the other not. well I

Re: [PD] Mess with Pd installation on Linux

2013-12-29 Thread yvan volochine
On 29/12/13 16:35, Alexandros Drymonitis wrote: JACKerror: Cannot use real-time scheduling (RR/5)(1: Operation not permitted) you should configure your system to allow jack to use RT scheduling: http://jackaudio.org/linux_rt_config cheers, y -- http://yvanvolochine.com

Re: [PD] why is the -jack flag not working?

2013-12-28 Thread yvan volochine
On 28/12/13 16:32, IOhannes m zmölnig wrote: this means, that the Pd you are using has been compiled without jack support. BTW is there any good reason to not have `--enable-jack` by default? cheers, y -- http://yvanvolochine.com http://soundcloud.com/yvanvolochine

Re: [PD] why is the -jack flag not working?

2013-12-28 Thread yvan volochine
On 28/12/13 21:12, IOhannes m zmölnig wrote: BTW is there any good reason to not have `--enable-jack` by default? my guess: jack is a dependency that cannot be expected to be installed on all (linux) environments, whereas ALSA can. so if you want to produce a binary that will run

Re: [PD] [change] bug?

2013-09-23 Thread yvan volochine
On 23/09/13 20:45, Jonathan Wilkes wrote: You can make your own version of that by first sending a copy of the incoming value through a spigot: [spigot 1] | [* -1] | [set $1( | [change] Then set the right inlet of [spigot] to zero and send the incoming value to your [change] object, and it

Re: [PD] get dir of current pd

2013-07-30 Thread yvan volochine
On 17/07/13 15:44, Max wrote: is there something like [ggee/getdir] but for getting the path of the currently running Pd binary? you mind explaining why you would need that? maybe there's an alternative way to achieve what you want? y -- http://yvanvolochine.com

Re: [PD] get dir of current pd

2013-07-30 Thread yvan volochine
On 30/07/13 08:41, Jonathan Wilkes wrote: Ok, I figured out how to do this and how do you do? y -- http://yvanvolochine.com http://soundcloud.com/yvanvolochine http://soundcloud.com/elgusanorojo http://github.com/gusano http://vimeo.com/yv ___

Re: [PD] get dir of current pd

2013-07-30 Thread yvan volochine
On 30/07/13 15:30, Max wrote: If you are using two separate instances, then you either need to start them manually, create a shell script that does it, or (and this is finally why I was curious to know if there is a way from within Pd to know the path of the binary) launch the second instance

Re: [PD] get dir of current pd

2013-07-30 Thread yvan volochine
On 30/07/13 20:43, Jonathan Wilkes wrote: I don't think /proc/self/exe is a requirement of all Linux flavors, and I don't know what the BSD OSes do, or OSX. So I'm reluctant to add this to [pdinfo]. I'd say don't bother adding anything that's not really needed (which does seem the case here

Re: [PD] building Pd vanilla with mingw

2013-07-26 Thread yvan volochine
On 26/07/13 15:15, Antoine Villeret wrote: git reflog 5419183 HEAD@{0}: clone: from git:// pure-data.git.sourceforge.net/gitroot/pure-data/pure-data maybe I cloned the wrong repos ? sf.net changed their repos URL so you need the following if you wanna try to build latest master: $ git

Re: [PD] building Pd vanilla with mingw

2013-07-26 Thread yvan volochine
On 26/07/13 19:18, Antoine Villeret wrote: i'm not sure which link is the right one for SVN and pd-extended so I let who knows to update them... this is the one for pd-extended/svn: $ svn checkout svn://svn.code.sf.net/p/pure-data/svn/trunk pure-data-svn ciao y -- http://yvanvolochine.com

[PD] store value of any type

2013-07-04 Thread yvan volochine
hi all, I'd like to store a value which can be of any type but I don't remember if that's even possible.. something like [value foo] but that would work for integer, list, or anything else like for [foo bar 123( is there a vanilla object for that? cheers, y -- http://yvanvolochine.com

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
hi Miller, If it's just local, the list object will do it (floats and symbols are just one-element lists). If you want something that (like 'value') can be accessed by name or pointer elsewhere in the patch, you might want the text object (in git repo, upcoming for version 0.45). If you're

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
On 04/07/13 22:23, Miller Puckette wrote: It might be fixed. I use make -f makefile.gnu from pd/src to avoice all the automake horror, and so had allowed the automake to get out of sync witht he source - Iohannes patched that so things migth be back to normal with automake too by now. it's

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
On 04/07/13 22:54, Miller Puckette wrote: Relly - you can make a [text] object but help comes up empty? There should be a file doc/5.reference/text-object-help.pd ... nope, trying to open its help gives me: sorry, couldn't find help patch for text-object.pd and that might be because: $

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
On 04/07/13 22:13, Lorenzo Sutton wrote: Does that mean only within the scope of your session (then [list] should do..), or even through patch opening/closing? yep [list] is the way to go.. thanks! y -- http://yvanvolochine.com http://soundcloud.com/yvanvolochine

Re: [PD] store value of any type

2013-07-04 Thread yvan volochine
On 04/07/13 23:08, Miller Puckette wrote: Aha... I never 'make install' myself - I'd better go look at that. Anyhow I think it shoud have been 'make -f makefile.gnu install' instead... yes this works.. I'll give [text] a try, thanks! maybe it's worth updating INSTALL.txt with your

Re: [PD] pd-0.45 + jack == weirdness

2013-06-26 Thread yvan volochine
On 26/06/13 11:31, IOhannes m zmoelnig wrote: yes, i would like to have an -audio auto switch, that will try to get*any* audio backend (e.g. jack, alsa, oss, dummy; in that order) i even think that this should be the default (e.g. when you start Pd with no arguments and uninitialized settings).

Re: [PD] pd-0.45 + jack == weirdness

2013-06-26 Thread yvan volochine
On 26/06/13 12:57, Nick Lanham wrote: In my experience, most people using jack these days are aware that most clients will autostart the server if they haven't started it, and it does not confuse them. yeah well in my expericence you don't need to open a terminal and kill jackd because an app

Re: [PD] pd-0.45 + jack == weirdness

2013-06-26 Thread yvan volochine
On 26/06/13 14:11, Nick Lanham wrote: * ardour3 does not - Yes it does. It will pop up a dialog asking you to configure jack first, but it does start it. of course you're right, my mistake.. I would expect a call to `jack_client_open()` when I turn DSP on, not when I launch an app with

Re: [PD] compiling pix_opencv on debian (lmde)

2013-06-25 Thread yvan volochine
On 21/06/13 20:40, Antoine Villeret wrote: i've made some change in the headers it should not depends on libcv-dev libhighgui-dev and libcvaux-dev anymore maybe this solve your problem too I still get the aforementioned error but after all externals have been built fine. but getting rid of

Re: [PD] compiling pix_opencv on debian (lmde)

2013-06-25 Thread yvan volochine
On 25/06/13 14:27, Antoine Villeret wrote: it should be fixed now, i don't know from where the line 643 comes... but my gcc 4.6.3 doesn't complain for that I have 4.8.1 thanks for reporting haha, funny that I missed that as well =) thanks for fixing! ciao y -- http://yvanvolochine.com

Re: [PD] pd-0.45 + jack == weirdness

2013-06-24 Thread yvan volochine
hi Miller, Are you using 0.44? (I don't think 0.45 exists yet :) yeah sorry, 0.44 (pd-0.45-0-test) The only relevant thing I can find in recent commits is a change from jack_client_new() to jack_client_open() back in 2010. With apologies, here is the commit I found... commit

Re: [PD] pd-0.45 + jack == weirdness

2013-06-24 Thread yvan volochine
On 24/06/13 18:58, Miller Puckette wrote: Thanks... I'm toying with a middle solution, which would be simply to open jack with the JackNoStartServer option (one of JackOpenOptions). I think this is a good idea anyway as the user might want to specify jack options and it seems wrong to have Pd

[PD] pd-0.45 + jack == weirdness

2013-06-23 Thread yvan volochine
hi list! I seem to recall some changes about the way pd and jackd interact together but I couldn't find the related info online so forgive me if that was discussed already.. before, if I launched pd without jack running, pd would take more time to launch with a bunch of messages complaining

Re: [PD] compiling pix_opencv on debian (lmde)

2013-06-21 Thread yvan volochine
hi Antoine I've push a fixed version to svn it should work with both version could you please test it with 2.4.5 ? nice, it seems that all externals build fine now (except for pix_opencv_surf but it looks like it should not be build in the first place..). I still get this error at the end

Re: [PD] compiling pix_opencv on debian (lmde)

2013-06-20 Thread yvan volochine
On 20/06/13 15:04, Antoine Villeret wrote: thanks for this I just tested your patch with a fresh install of Ubuntu and it doesn't work pix_opencv still depends both on opencv 1.5 and 2.3 it's a shame but I'll fix this later yep, I thought that this might be archlinux specific, that's why I

Re: [PD] compiling pix_opencv on debian (lmde)

2013-06-19 Thread yvan volochine
FYI it does not build on archlinux (with opencv2). I fixed some of it with the following patch: https://gist.github.com/gusano/5814205 and now all externals build fine except for `pix_opencv_blobtrack` which gives the following error: blobtrack.h: In function ‘CvFGDetector*

Re: [PD] pd color presets

2013-06-17 Thread yvan volochine
hi Jonathan, How do I hook this into Yvan Volochine's gui-prefs stuff? It currently only saves recent files-- is there a guide on how to add more gui preferences? IIRC it should be pretty straightforward (although I wrote that some time ago..). have a look at how it's done for

Re: [PD] got jump-on-click arrays working

2013-04-29 Thread yvan volochine
On 29/04/13 20:36, Jonathan Wilkes wrote: * I got jump-on-click arrays working. * Implemented bargraph style for Put menu arrays. (See attached) This is basically a multi-slider. nice! do you have both jump-on-click /and/ bargraph at the same time? cheers, y -- http://yvanvolochine.com

Re: [PD] got jump-on-click arrays working

2013-04-29 Thread yvan volochine
On 29/04/13 21:26, yvan volochine wrote: On 29/04/13 20:36, Jonathan Wilkes wrote: * I got jump-on-click arrays working. * Implemented bargraph style for Put menu arrays. (See attached) This is basically a multi-slider. nice! do you have both jump-on-click /and/ bargraph at the same time

Re: [PD] got jump-on-click arrays working

2013-04-29 Thread yvan volochine
On 29/04/13 22:07, Jonathan Wilkes wrote: That's the behavior I currently have working. cool =) The question is whether there is a need for an additional option to turn off the jump-on-index naa I meant the jump-on-click option only.. you might want to keep some sliders responding to

Re: [PD] Git version control, diff and pd.

2013-04-17 Thread yvan volochine
On 17/04/13 16:54, Roman Haefeli wrote: Can anyone provide tips on how to diff two pd patches to find differences quickly so that conflicts can be fixed by hand without spending too much time trying to find differences? I think there is no way to sanely handle that. wasn't there some plan to

Re: [PD] completion-plugin in pd-extended

2013-03-04 Thread yvan volochine
hi João! On 03/03/13 17:19, João Pais wrote: I have a windows and mac (powerpc) machine in my room, sharing the same keyboard and mouse. is that enough for debugging? sure if you can help, feel free to test and report bugs to me! there is still this issue with pd-vanilla[1], which should be

Re: [PD] can't load gridflow 9.13 on Mountain Lion?

2013-03-01 Thread yvan volochine
On 01/03/13 18:53, Jonathan Wilkes wrote: How many people use Gridflow, anyway? well, many should because gridflow is amazing =) y -- http://yvanvolochine.com http://soundcloud.com/yvanvolochine http://vimeo.com/yv ___ Pd-list@iem.at mailing list

[PD] completion-plugin in pd-extended

2013-02-25 Thread yvan volochine
hi Hans! I was wondering if you'd be willing to add completion-plugin[1] to pd-extended and if yes, what would be the steps to do it? =) are you stlil using svn for pd-extended ??? cheers, y [1]https://github.com/completion-plugin -- http://yvanvolochine.com

Re: [PD] completion-plugin in pd-extended

2013-02-25 Thread yvan volochine
On 25/02/13 14:04, Hans-Christoph Steiner wrote: For something to be included in Pd-extended, it needs to work on all platforms, and be stable both in terms of bugs and APIs/interface. I would love to see the completion plugin get to that point. oh I see.. as I have no access to osx nor

Re: [PD] GUI toolkits and custom GUIs WAS: Integra Live 1.5 released

2013-01-28 Thread yvan volochine
On 27/01/13 21:15, IOhannes zmölnig wrote: nova became supernova, and supernova is now an official alternative scsynth implementation for SC3 (it even comes with SC3, but afaik is not the default synth engine yet(?)) not yet, unless you have the following line in your startup file:

Re: [PD] Raspberry Pi as rt guitar effect processor : proof of concept

2013-01-28 Thread yvan volochine
On 27/01/13 17:00, Pierre Massat wrote: http://www.youtube.com/watch?v=NwJNeouLqgQfeature=youtu.be Dear all, It's working !!! :) bravo =) y -- http://yvanvolochine.com http://soundcloud.com/yvanvolochine http://vimeo.com/yv ___ Pd-list@iem.at

Re: [PD] GUI toolkits and custom GUIs WAS: Integra Live 1.5 released

2013-01-19 Thread yvan volochine
On 18/01/13 22:31, Hans-Christoph Steiner wrote: It also depends on what you mean by improve. I personally want Pd's GUI to look and act as native as possible on any given platform, and it turns out that Tk is one of the better GUI toolkits for doing that. I think that `supercollider` is a

Re: [PD] [PD-dev] can't seem to get new build system to work

2012-11-22 Thread yvan volochine
On 11/22/2012 04:31 AM, Miller Puckette wrote: I might be missing something... under Fedora 17 (the newest I believe), when I try to build Pd using the new build system I get: [snip] autoreconf: configure.ac: not using Libtool autoreconf: running: /usr/bin/autoconf --force configure.ac:91:

Re: [PD] OT: Partition space for ubuntu distro?

2012-10-17 Thread yvan volochine
hi João, I'm going to install ubuntu in my thinkpad x61s, and wanted to ask the following questions for the most experienced persons around: - the computer is for media work, 97% only Pd. Maybe some ardour or other small programs (no video work) - is the latest ubuntu version recommended?

Re: [PD] firewire is dead?

2012-10-16 Thread yvan volochine
On 10/16/2012 02:45 PM, patrick wrote: good, i was a little bit worried about using a pci-e firewire adapter for audio in linux / jack. about latency, yesterday i used jdelay to measure the round-trip of my latency, at 44100 with 128, 3 = 17 ms (jack reports 8 ms). at 96000 i get 7 ms, BUT my

Re: [PD] pd 0.43 report

2012-10-14 Thread yvan volochine
On 10/14/2012 03:26 PM, Mirko Maier wrote: - dynamic patching: i have this message: editmode 1, mouse 12526 541 0 0, motion 12526 2000 0, mouseup 12526 2000 0 0, mouse 21 -500 0 0, mouseup 25 1999 0 0, cut, mouse 12526 2000 0 0, motion 12526 541 0, mouseup 100 100 0 0 (sent to a

Re: [PD] pd 0.43 report

2012-10-14 Thread yvan volochine
On 10/14/2012 05:50 PM, yvan volochine wrote: this is working fine for me (pd-0.43 on linux). on which platform are you? ah, sorry but I just realized you were talking about pd-extended-0.43, my report was for pd-0.43 vanilla y -- http://yvanvolochine.com http://soundcloud.com

Re: [PD] ANN: New version of Pd-L2Ork Software Featured in the Inaugural VT ICAT Maker Workshop for Middle-School Kids

2012-07-31 Thread yvan volochine
On 07/31/2012 12:47 AM, Ivica Ico Bukvic wrote: Hi, thanks for your interest. Please see my comments below... Hi Ico Well, I guess that is relative depending on what information format works the best for you (something that is impossible to do in a way that pleases everyone) and at least in

Re: [PD] ANN: New version of Pd-L2Ork Software Featured in the Inaugural VT ICAT Maker Workshop for Middle-School Kids

2012-07-30 Thread yvan volochine
On 07/30/2012 05:29 PM, Ivica Ico Bukvic wrote: check out what the latest version of pd-l2ork is all about ;-) hiho this sounds really nice, but let me just add a couple of comments. - it took me 5 min to find the tar.bz2 download link on your website (really) - unpacking

Re: [PD] [PD-dev] Plugins preferences (Was Re: Plugins Plugin error)

2012-06-01 Thread yvan volochine
On 06/01/2012 05:46 PM, Jonathan Wilkes wrote: I haven't looked at the code-- does pd_guiprefs.tcl have an interface for saving/reading gui prefs data? it does, this was the main purpose of this code when I wrote it. but really, instead of YA-Gui-Plugin that manages all other Gui-Plugins,

Re: [PD] [PD-dev] Plugins preferences (Was Re: Plugins Plugin error)

2012-06-01 Thread yvan volochine
On 06/01/2012 09:28 PM, yvan volochine wrote: but really, instead of YA-Gui-Plugin that manages all other Gui-Plugins, why not add an option in pd menu that lists and (en|dis)able plugins at user's will? (which would be part of the core of pd of course) now that pd ships with plugins ability

Re: [PD] [PD-dev] Plugins preferences (Was Re: Plugins Plugin error)

2012-06-01 Thread yvan volochine
On 06/01/2012 11:18 PM, András Murányi wrote: What do you think about changing the pd_guiprefs interface in way like this: (current - proposed:) domain (always pd-extended) - could be hardwired to pd-extended `domain' is the preferences folder path so I'm not sure I really follow your

Re: [PD] [PD-dev] Plugins preferences (Was Re: Plugins Plugin error)

2012-06-01 Thread yvan volochine
On 06/02/2012 01:33 AM, Jonathan Wilkes wrote: What is needed is a single prefs dialog window with two frames-- 1) a listbox on the left (or treeview if you want to have categories like gui, audio, midi, etc.), and the frame on the right which has the checkboxes, labels, and buttons that

Re: [PD] variable receive objects?

2012-05-12 Thread yvan volochine
On 05/12/2012 10:29 PM, Jonathan Wilkes wrote: However, there comes a point when making a serious user interface that wires start to get in the way, esp. on some of the more complex interfaces people have made in Pd for sequencing, real-time performance, etc. I'd say at the level where the

Re: [PD] pix_freenect | pix_openni build issues on linux

2012-05-03 Thread yvan volochine
On 05/03/2012 05:17 PM, Matthias Kronlachner wrote: sorry i was away for some time.. you have to rename Makefile_linux to Makefile, yes. the other one is for osx as you already found out. sorry for not making a universal one so far. maybe you have to change some paths in the Makefile_linux hi,

Re: [PD] pix_freenect | pix_openni build issues on linux

2012-05-02 Thread yvan volochine
On 05/01/2012 07:43 PM, Benjah @ 01xy.fr wrote: when trying to compile pix_freenect | pix_openni on ubuntu 10.04, I vaguely remember this ‘-fpascal-strings’ problem which is concerns macos and not linux. At the end, for pix_openni, I just changed the Makefile with PD_APP_DIR = and GEM_DIR = and

Re: [PD] pix_freenect | pix_openni build issues on linux

2012-05-02 Thread yvan volochine
On 05/02/2012 10:07 AM, yvan volochine wrote: I looks like the Makefile is osx oriented.. erm... could it be simply that I need to use `Makefile_linux` instead of Makefile ? (after renaming them) y -- yvan.voloch...@gmail.com http://yvanvolochine.com

[PD] pix_freenect | pix_openni build issues on linux

2012-04-30 Thread yvan volochine
hiho, I'm trying to build pix_freenect|pix_openni on (up-to-date) archlinux and I have a couple of issues (using latest libfreenect): - libfreenect is not found if it was not installed in /usr (instead of /usr/local which should be the default for a manual build) - pix_freenect won't build

Re: [PD] pix_freenect | pix_openni build issues on linux

2012-04-30 Thread yvan volochine
On 04/30/2012 10:36 AM, yvan volochine wrote: hiho, sorry, forgot to mention I'm using gcc-4.7.0 -- yvan.voloch...@gmail.com http://yvanvolochine.com ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info

Re: [PD] mrpeach routeOSC behaves differently then its previous release?

2012-03-13 Thread yvan volochine
On 03/13/2012 07:12 AM, Frank Barknecht wrote: Though I lack to see the necessity to change [routeOSC]'s current behaviour, I agree that it most likely wouldn't cause any harm. As I understand it, this topic only came up because apparently the behaviour has been changed in the newest release

Re: [PD] mrpeach routeOSC behaves differently then its previous release?

2012-03-12 Thread yvan volochine
On 03/12/2012 02:54 PM, Hans-Christoph Steiner wrote: IMHO, [routeOSC] should accept these two as the same thing: [/bla/1/blabli 0.437( [list /bla/1/blabli 0.437( It'll make life easier for a lot of people, and I can't see any disadvantage in that setup. well, in pd in general, [list foo

Re: [PD] [PD-announce] Kusum Normoyle London video + Disinformation manoeuvres in Gujarat...

2012-02-15 Thread yvan volochine
On 02/13/2012 08:02 AM, Disinformation PR wrote: With compliments, hope you enjoy ;) Kusum Normoyle + Steve Beresford + Disinformation LIVE... cool thanx, Kusum is amazing... 30 seconds is too short ;) _y ___ Pd-list@iem.at mailing list

Re: [PD] [expr $f1 if...] bug?

2012-01-31 Thread yvan volochine
On 01/31/2012 06:33 PM, Lorenzo Sutton wrote: metronome | | [ expr $f1; if ($f1 == 1, 1, 0); if ($f1 == 5, 2, 0); if ($f1 == 9, 3, 0); if ($f1 == 13, 4, 0); if ($f1 == 17, 5, 0); if ($f1 == 21, 6, 0); if ($f1 == 25, 7, 0); if ($f1 == 29, 8, 0); if ($f1 == 33, 9, 0); if ($f1 == 37, 10, 0); if

Re: [PD] [expr $f1 if...] bug?

2012-01-31 Thread yvan volochine
On 01/31/2012 07:33 PM, yvan volochine wrote: or something like: [expr int(($f1 + 3) * 0.25)] | [change 0] which of course is wrong cause it misses the else 0 part... y -- yvan.voloch...@gmail.com http://yvanvolochine.com ___ Pd-list@iem.at

Re: [PD] no pd?? WTF ????

2012-01-04 Thread yvan volochine
On 01/04/2012 12:01 PM, Marco Donnarumma wrote: Well, that's weird enough. I actually know those guys through different channels. This is not the first call they send, and, although they work in Max, I think this is the first time I notice such a counterproductive requirement. The weirdest

Re: [PD] no pd?? WTF ????

2012-01-04 Thread yvan volochine
On 01/04/2012 07:22 PM, Mathieu Bouchard wrote: Le 2012-01-04 à 17:51:00, yvan volochine a écrit : a couple of days ago I added a comment on USO blogpost [1] complaining about this decision (and I tried not to be too angry). as an answer they just disabled comments on this post... May you

Re: [PD] autocompletion bug report

2011-12-29 Thread yvan volochine
On 12/28/2011 11:59 PM, olivier gailly wrote: hello, this plugin seems great but i have a problem installing it : UNHANDLED ERROR: version conflict for package Tcl: have 8.4, need 8.5 while executing package require Tcl 8.5 (uplevel body line 27) invoked from within uplevel #0

Re: [PD] OT: Poll: Csounds or SuperCollider or Chuck

2011-11-01 Thread yvan volochine
On 11/01/2011 04:23 AM, Jean-Michel Dumas wrote: It's great to see pyo make an appearance in this discussion. For completion's sake, here's the 128 sine waves with random freq mixed down to stereo example written in pyo. I find it much more readable than either SC or cSound, but that's only a

Re: [PD] OT: Poll: Csounds or SuperCollider or Chuck

2011-10-27 Thread yvan volochine
On 10/26/2011 11:57 PM, Hans-Christoph Steiner wrote: Its true, that is the downside of everything having a physical representation, i.e. each instance has its object box. But I think that its possible to make it really easy in Pd. That's the goal of the 'many' lib. I'd love feedback on what you

Re: [PD] OT: Poll: Csounds or SuperCollider or Chuck

2011-10-26 Thread yvan volochine
1. How do they compare against each other? I only know a bit csound and am an everyday sc user. - I find csound oldschool syntax pretty boring but maybe that's just me. - sc is a killer for realtime dsp. - sc-list is *extremely* active and helpful. ... 3. What sort of things can be achieved

Re: [PD] OT: Poll: Csounds or SuperCollider or Chuck

2011-10-26 Thread yvan volochine
On 10/26/2011 09:20 PM, Hans-Christoph Steiner wrote: 3. What sort of things can be achieved in these programs that can't be achieved in Pd, if any? polyphony in pd is a nightmare, you get it for free in sc: // 128 sine waves with random freq mixed down to stereo: {

Re: [PD] OT: Poll: Csounds or SuperCollider or Chuck

2011-10-26 Thread yvan volochine
On 10/26/2011 09:38 PM, Jonathan Wilkes wrote: polyphony in pd is a nightmare, you get it for free in sc: // 128 sine waves with random freq mixed down to stereo: { Splay.ar(SinOsc.ar({ExpRand(100, 5e3)} ! 128)) }.play Not too long ago matju wrote about the possibility that one could make GF

Re: [PD] auto-completion with popup [was: 3 new gui-plugins]

2011-09-21 Thread yvan volochine
salut Mathieu replying on the list because I think it's of general interest ;) I'll give a try at desiredata and let you know. J'ai bien peur que ça marche seulement juste assez pour pouvoir voir de quoi ont l'air certaines features, et encore... il y en a plusieurs qui sont brisées. I did

Re: [PD] [PD-dev] tkwidgets

2011-08-26 Thread yvan volochine
On 08/26/2011 02:19 AM, András Murányi wrote: Yeah and afaiu this is exactly the job that HC just started (see his announcement below). Yvan: in my simple understanding it goes like this: 1. getting rid of tcl-specific code in pd c core 2. minimizing the communication between the core and the

Re: [PD] notes/questions from a beginner

2011-08-26 Thread yvan volochine
On 08/26/2011 10:37 AM, IOhannes zmölnig wrote: On 08/26/2011 01:04 AM, yvan volochine wrote: yeah, ALT+H Alt-H?? all systems i know use F1 for help, except apple which uses Cmd-? whatever shortcut is fine, the point is not having to use the mouse. on a (keyboard) selected object would

Re: [PD] notes/questions from a beginner

2011-08-26 Thread yvan volochine
On 08/26/2011 04:51 PM, Jonathan Wilkes wrote: yeah, ALT+H Alt-H?? all systems i know use F1 for help, except apple which uses Cmd-? On most of the software I've used F1 is a shortcut for general help for the program-- not for specific results based on what happens to be selected

Re: [PD] [PD-announce] gem 0.93.0

2011-08-26 Thread yvan volochine
On 08/26/2011 06:20 PM, IOhannes zmölnig wrote: after long years of waiting (foir you) and hard labour (for me), Gem 0.93 has been released today. large parts of the underlying engine have been re-written to give you a better experience! nice, congrats ! cheers, _y

Re: [PD] [PD-dev] tkwidgets

2011-08-26 Thread yvan volochine
On 08/26/2011 05:31 PM, Jonathan Wilkes wrote: It might be a good idea to list the problems with tcl/tk so we can weigh them against the difficulty of using a different GUI toolkit. The problems I see are: * difficult to implement a decent zoom function for a canvas * can't display png

Re: [PD] notes/questions from a beginner

2011-08-25 Thread yvan volochine
On 08/23/2011 02:16 PM, Stephen Lavelle wrote: 2 - If I have an object selected (that's to say pressing buttons to edit text in it) I can't find any key-combination that will delete it how could you distinguish between 'delete text' from 'delete object' then ? IMHO best would be hitting RETURN

Re: [PD] scripts instead of preferences WAS: reorg of puredata.info/docs/developer

2011-07-06 Thread yvan volochine
On 07/06/2011 10:53 PM, errordevelo...@gmail.com wrote: We agreed before that the /disabled folders method is no good, and that we (probably me) will code up a logic which stores this in preferences (via ::pd_guiprefs). I'm interested in further brainstorming but right now I feel that good old

Re: [PD] [PD-announce] completion-plugin new version

2011-05-30 Thread yvan volochine
On 05/30/2011 03:28 PM, Mathieu Bouchard wrote: On Mon, 23 May 2011, yvan volochine wrote: On 05/21/2011 11:46 PM, Mathieu Bouchard wrote: You need to modify the 'find' method in the canvas class. You make one version that doesn't auto-select an item, but instead sends a list of all matches

Re: [PD] [PD-announce] completion-plugin new version

2011-05-27 Thread yvan volochine
On 05/27/2011 05:37 PM, Hans-Christoph Steiner wrote: It wouldn't be hard to code this in C, the question for me is what would the interface be, both in terms of coding in Tcl and the GUI itself. I wouldn't spend too much time on this but rather move on and completely separate pd and its GUI

Re: [PD] [PD-announce] completion-plugin new version

2011-05-23 Thread yvan volochine
On 05/21/2011 11:46 PM, Mathieu Bouchard wrote: that's great. don't know if you want to, but I would suggest to copy another useful max feature: when you click on a send or receive object (the same for their audio versions), a pop-up comes up listing how many other objects exist using the same

Re: [PD] [PD-announce] completion-plugin new version

2011-05-17 Thread yvan volochine
On 05/17/2011 02:16 PM, Scott McCoid wrote: Can you explain how you got this working on OS X? I've downloaded tcl 8.5, but I'm a little unclear on what you did. on OSX 10.5.8, after installing tcl8.5 from activestate, a new 'wish' ends up in /usr/local/bin. so if your PATH is set correctly,

Re: [PD] [PD-announce] completion-plugin new version

2011-05-15 Thread yvan volochine
On 05/14/2011 08:19 PM, João Pais wrote: that's great. don't know if you want to, but I would suggest to copy another useful max feature: when you click on a send or receive object (the same for their audio versions), a pop-up comes up listing how many other objects exist using the same

Re: [PD] gui plug-ins not loading in new install

2011-05-15 Thread yvan volochine
On 05/12/2011 11:53 PM, ALAN BROOKER wrote: Hope I can ask for some advice? I have a fresh Kubuntu (Lucid) and Pd extended 0.43 (from nightly builds) install-Ive put the GUI plug-ins in start up but getting error messages on start up : '/usr/lib/pd/startup/buttonbar-plgincant load startup

Re: [PD] auto-completion with popup [was: 3 new gui-plugins]

2011-05-12 Thread yvan volochine
On 05/12/2011 04:32 AM, JF wrote: Just saw this new version now. Looks absolutely awesome Yvan. Can't wait to try it out and thanks for including the 'All' mode that I bugged you about - I hope it's of use to more users than just me! well I'm sorry to tell you that this was eventually

[PD] [PD-announce] completion-plugin new version

2011-05-12 Thread yvan volochine
hi I rewrote autocompletion-plugin which is now called 'completion-plugin'. there are some cool new features: - new GUI (inspired from desire-data) - added an option file - auto-creation of completed objects (via Return key) - added a 'save_mode' so pd remembers keywords for

[PD] gui-plugins management [was: auto-completion with popup]

2011-05-10 Thread yvan volochine
On 05/10/2011 08:55 PM, András Murányi wrote: though it's a bit annoying that the user cannot chose to _not_ use a certain plugin. (moving the foo-plugins folder into a disabled/ folder is probably a not such a good idea either, as in this case this would be a global operation

Re: [PD] auto-completion with popup [was: 3 new gui-plugins]

2011-05-09 Thread yvan volochine
On 05/08/2011 06:40 PM, Hans-Christoph Steiner wrote: [SNIP] Those Gem, etc version reports are just the thing that the people I talked to were complaining about. If you are totally new, then being hit with a wall of mystery text can be intimidating. From my perspective, I also don't want to

Re: [PD] 0.43 should still be a test version

2011-05-08 Thread yvan volochine
On 05/08/2011 02:14 PM, Matteo Sisti Sette wrote: Here are three bugs that make it unusable, all of them are regressions: [...] bug 3273884: mouse wheel scrolling doesn't work (it scrolls all the way down and all the way up in a single step) bug 3273848: editing an object box is painful.

Re: [PD] auto-completion with popup [was: 3 new gui-plugins]

2011-05-07 Thread yvan volochine
hi hans, thanks for testing On Mac OS X, I can't select the the ?? Why did you need to override ::dialog_font::ok? Perhaps something needs to be fixed so you don't need to do that. to be able to change the completion fontsize on the fly when changing the fontsize via ::dialog_font

Re: [PD] auto-completion with popup [was: 3 new gui-plugins]

2011-05-07 Thread yvan volochine
IMHO it would be better to see what kind of extra libs/plugins are loaded without debug level (it's easy to forget that you have this maybe-buggy thing in your path). I'd vote for posting those by default. i'd do a gui-plugin that raises the debug-level. That's always a possibility, you can

Re: [PD] auto-completion with popup [was: 3 new gui-plugins]

2011-05-06 Thread yvan volochine
hey, I found the time to refine autocompletion-plugin so I ended up kinda rewriting it (screenshot below). there are lots of changes, it would be nice if some of you could test it and tell me what's wrong or what is weird etc... latest is here:

Re: [PD] auto-completion with popup [was: 3 new gui-plugins]

2011-05-06 Thread yvan volochine
On 05/06/2011 08:16 PM, Patrice Colet wrote: thank you for this plugin, is it possible to have a 8.4 compatible code? then it would be possible to load it within pd-vanilla no sorry I won't support tcl-8.4 (and its ugly fonts) note that gui-plugins work only in pd = 0.43 (vanilla or not) if

Re: [PD] msg to abstractions

2011-05-05 Thread yvan volochine
On 05/05/2011 09:15 PM, Jeppi Jeppi wrote: Hey, many thanks to all for such great trickshacks! The trick to route messages to a named subpatch turned out to be a chicken-egg problem if the subpatches are to be built dynamically as I need...thanks for the nice idea anyway :) though obsolete (?)

Re: [PD] helpbrowser and the paths

2011-05-04 Thread yvan volochine
sorry if I miss some of the basics in pd-loading-libs or if this was discussed before but wouldn't it make sense to have a difference between what is added to 'path' and what goes into the HelpBrowser ? (i.e. -lib loads externals, help, ... and goes into HelpBrowser and -path adds whatever to

  1   2   >