Re: [PD] Get name of patch from within the patch

2014-03-04 Thread Kaj Ailomaa
On Tue, Mar 4, 2014, at 02:54 AM, Chris McCormick wrote: Hello, On 03/03/14 21:55, Kaj Ailomaa wrote: Hi. I've been googling a bit and looking through the library of objects that comes with pd-extended, but can't seem to find a way to get the name of the patch from within the patch.

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-04 Thread i go bananas
just for interest perhaps, here's the sound editor i made years ago: http://puredata.hurleur.com/sujet-1295-sound-editor and probably even more interesting, here is maelstorm's wave display abstraction: http://puredata.hurleur.com/sujet-5890-waveform-display basically, what maelstorm

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-04 Thread Pierre Massat
Wow, your patch is impressive, i'd missed that. I've looked at maelstrom's editor as well. Both will be nice things to study. i think i'll stick to data structures though because what i need is something to record and edit discrete events, not an audio signal. I don't think i have to use tables at

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-04 Thread i go bananas
from memory, i THINK maelstorm's wave display DOES use data structures to do the display. On Tue, Mar 4, 2014 at 10:28 PM, Pierre Massat pimas...@gmail.com wrote: Wow, your patch is impressive, i'd missed that. I've looked at maelstrom's editor as well. Both will be nice things to study. i

Re: [PD] Get name of patch from within the patch

2014-03-04 Thread Jonathan Wilkes
On 03/04/2014 03:00 AM, Kaj Ailomaa wrote: On Tue, Mar 4, 2014, at 02:54 AM, Chris McCormick wrote: Hello, On 03/03/14 21:55, Kaj Ailomaa wrote: Hi. I've been googling a bit and looking through the library of objects that comes with pd-extended, but can't seem to find a way to get the name

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-04 Thread Jonathan Wilkes
On 03/04/2014 10:11 AM, i go bananas wrote: [...] 2014-03-04 12:12 GMT+01:00 i go bananas hard@gmail.com mailto:hard@gmail.com: just for interest perhaps, here's the sound editor i made years ago: http://puredata.hurleur.com/sujet-1295-sound-editor

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-04 Thread Jonathan Wilkes
On 03/04/2014 01:20 PM, Jonathan Wilkes wrote: On 03/04/2014 10:11 AM, i go bananas wrote: [...] 2014-03-04 12:12 GMT+01:00 i go bananas hard@gmail.com mailto:hard@gmail.com: just for interest perhaps, here's the sound editor i made years ago:

Re: [PD] Get name of patch from within the patch

2014-03-04 Thread Ivica Bukvic
...and [patch_name] external (again pd-l2ork only) that outputs the filepath out of the left outlet and the patch filename out of the right outlet. On Mar 4, 2014 12:47 PM, Jonathan Wilkes jancs...@yahoo.com wrote: On 03/04/2014 03:00 AM, Kaj Ailomaa wrote: On Tue, Mar 4, 2014, at 02:54 AM,

Re: [PD] jack and callbacks

2014-03-04 Thread Peter P.
Hi, * Miller Puckette m...@ucsd.edu [2014-03-04 04:16]: The callback flag instructs the Pd scheduler to run within callbacks from the audio system; otherwise the audio system might still be opened in callback mode (in portaudio or jack) or not (in alsa or mmio) but if yes, the scheduler and

Re: [PD] Get name of patch from within the patch

2014-03-04 Thread Jonathan Wilkes
On 03/04/2014 01:15 PM, Ivica Bukvic wrote: ...and [patch_name] external (again pd-l2ork only) that outputs the filepath out of the left outlet and the patch filename out of the right outlet. There's also [patchname $1( | [duplicate_effort] Just fill $1 with the name of the object you

Re: [PD] Get name of patch from within the patch

2014-03-04 Thread Ivica Bukvic
Except that in this case patch_name precedes canvasinfo... On Mar 4, 2014 3:01 PM, Jonathan Wilkes jancs...@yahoo.com wrote: On 03/04/2014 01:15 PM, Ivica Bukvic wrote: ...and [patch_name] external (again pd-l2ork only) that outputs the filepath out of the left outlet and the patch filename

Re: [PD] Get name of patch from within the patch

2014-03-04 Thread Jonathan Wilkes
But it also precedes the search-plugin. -Jonathan On Tuesday, March 4, 2014 3:59 PM, Ivica Bukvic i...@vt.edu wrote: Except that in this case patch_name precedes  canvasinfo... On Mar 4, 2014 3:01 PM, Jonathan Wilkes jancs...@yahoo.com wrote: On 03/04/2014 01:15 PM, Ivica Bukvic wrote:

Re: [PD] jack and callbacks

2014-03-04 Thread puredata
Trying to have the lowest latency with Jack / Linux / 64bit / RT kernel / 48000 / 3 / 64. So should I use this too? ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] jack and callbacks

2014-03-04 Thread Peter P.
* pured...@11h11.com pured...@11h11.com [2014-03-04 23:05]: Trying to have the lowest latency with Jack / Linux / 64bit / RT kernel / 48000 / 3 / 64. So should I use this too? Best see for yourself if it has an advantage on your system or not. Seems hard to give a generaizable recommendation on

Re: [PD] Pd as sound editor (issue with scrolling a table) ??

2014-03-04 Thread Billy Stiltner
So when you use the [until] loop you are sending drawing instructions to the GUI ($arraysize * $no_mouse_events) times. A single array redraw instruction in tcl is about 4k, so to scroll a single pixel for a 100-element array: 100 elements * 1 = 100 redraws * 4k = 400k thats why i say fix tcl/tk

Re: [PD] Rewriting a unified phasor / metro object for reading tables

2014-03-04 Thread Chris McCormick
Hi, On 09/05/13 05:00, Ed Kelly wrote: I'm rewriting phasor~ and unifying it with metro so that a pulse is generated from the boundaries of each ramp - so that bars of music can be read using tabread~ objects with a sample-accurate metro. Not sure if this is relevant or already common