[PD] LAC 2018 workshops - pmpd and data structures

2018-06-04 Thread João Pais
://lac.linuxaudio.org/2018/pages/event/26/ More informations in http://lac.linuxaudio.org/2018/pages/schedule/ Best regards, João Pais ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list

Re: [PD] Data structures - delete specific scalar?

2018-05-20 Thread João Pais
Just thought of this after sending the previous mail. I can't try this hack, but it might work. To delete a scalar: - get the scalar's x/y coordinates - use mouse messages to select and delete anything over that pixel. Drawbacks: - will delete anything else over that pixel (affects the

Re: [PD] Data structures - delete specific scalar?

2018-05-20 Thread João Pais
as I recall, in a mail Miller said that it wasn't easy to implement a "delete" (or "previous" etc.) methods, because it would mix up the pointer structures. But most likely I'm remembering incorrectly. The lag with scalars is a real thing, as with any other canvas with lots of gui objects

Re: [PD] Piano roll sequence display

2018-04-30 Thread João Pais
From a long-time project I'm working on, here is a "screen capture" of a complete classical piece converted directly from midi, around 1h of music, 33548 notes/structs. The way it is made, I will update the midi anytime, and update the pd patch when necessary. Could also be editable via

Re: [PD] Normaliizing sinus mix

2018-04-30 Thread João Pais
I'm not sure: if I use the amplitudes 1 0.5 0.25, the peak amplitude is 1, and the wave is clearly outside of the 1/-1 boundaries. then you are doing something wrong. why do you think the maximum of abs(sin(t)+½sin(2t)+¼sin(4t)) is "1"? to analytically get the maxima of this function, you

Re: [PD] Normaliizing sinus mix

2018-04-30 Thread João Pais
is the formula that does the "normalize" function. Best, Joao On Apr 29, 2018 7:55 PM, "João Pais" <jmmmp...@gmail.com> wrote: Hello list, I was curious about the following math issue: when defining a waveform using "sinesum 0.8 0.2 0.1", what would be

Re: [PD] suggestion: $0 in messages

2018-04-02 Thread João Pais
For me, I can't count how many times I had to add a [$0], or a pack or some extra workaround before a message so that I could send messages to my variables (I hardly use variables without a $0). I can't count how many times I had to loop back the outlet of a [+ 1] to the right inlet of a [f ]

[PD] jmmmp library update 0.48

2018-03-17 Thread João Pais
such as [matrixctrl], [jp.menu] and [jp.preset]. Feel free to download it and try it out. You can also download it through deken, search for jmmmp. For more informations and a tarball file, go to http://puredata.info/downloads/jmmmp/releases/0.48 Best, João Pais

[PD] Text projection in real time

2018-02-28 Thread João Pais
Hello list, I was looking on the best way to display some texts which will be produced/improvised in realtime. These will be acessible either as a list, OSC, or on a file. I tried gem's 2dtext and [flatgui/entry], but they both don't work that well, as some or all of the following aren't

Re: [PD] Tcl-tk plugin to avoid paste going to edit mode

2018-02-19 Thread João Pais
thanks, option 1 worked. Option 1 is easier: > > # this is the default in pd_bindings.tcl > bind all <$::modifier-Key-v> {menu_send %W paste} > > # disabled > bind all <$::modifier-Key-v> {break} > > Option 2 requires either overriding ::pd_menucommands::menu_send and > intercepting the

[PD] Tcl-tk plugin to avoid paste going to edit mode

2018-02-18 Thread João Pais
Hello list, I had a question for any tcl-plugin programmer out there: is it possible (and easy) to make a GUI plugin that would avoid Pd going into edit mode when the paste key combination is pressed? The reason is, while using a patch with [flatgui/entry], the patch is always going into edit

[PD] declare vs. namespaces - current best practice

2018-01-02 Thread João Pais
Dear list, I'm trying to make my abstraction library vanilla-compatible, but nevertheless I need to use some externals. Since I didn't keep up with the vanilla progress the last years, I wanted to ask what is the best method to make sure that all externals are loaded: - use [declare ]? - use

[PD] Vocal synthesis controlled by Pd

2017-12-16 Thread João Pais
Hello list, I'm looking around, does anyone have a suggestion for a vocal synthesis software that can be controlled by Pd? (either by direct or less-direct means such as through a console) The purpose would be to produce a realistic output of some texts typed in Pd, hopefully in different

Re: [PD] leapmotion.pd_linux can't create troubleshooting

2017-10-21 Thread João Pais
me. Or am > I missing something? > > > > On 2017년 10월 20일 19:38, João Pais wrote: > >> Btw I just paid Chikashi a sum to update the leapmotion external to the >> SDK v2. It is done, and the code is public. >> >> Neverm

Re: [PD] leapmotion.pd_linux can't create troubleshooting

2017-10-20 Thread João Pais
Btw I just paid Chikashi a sum to update the leapmotion external to the SDK v2. It is done, and the code is public. Nevermind. changed the install directory and it works now. ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management

Re: [PD] data structures arrays and Control / Shift keys

2017-10-20 Thread João Pais
Hi, it is documented, but I don't remember where. Just for arrays, afaik. Also you can write values directly into drawtext fields, etc. Playing around with data-structures today, I discovered some unexpected features. It seems that the Control and Shift >keys change the behavior of how the

[PD] Pd meetings in Berlin?

2017-10-09 Thread João Pais
Donnarumma and João Pais ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list

Re: [PD] listing to json port?

2017-09-06 Thread João Pais
I'll have to look at your suggestions. I can't distribute the json code (although maybe I could send to one or other individuals, instead to a list). Best, Joao On 09/05/17 02:31, João Pais wrote: Hello list, I wanted to know if it's possible to listen to a port 6437, where some json

Re: [PD] listing to json port?

2017-09-04 Thread João Pais
Hello list, I wanted to know if it's possible to listen to a port 6437, where some json messages are coming in. I've seen in my webbrowser that the port is indeed active, but when I try udpreceive nothing comes out - which probably means that I'm not getting the process. tcpreceive? that

[PD] listing to json port?

2017-09-03 Thread João Pais
Hello list, I wanted to know if it's possible to listen to a port 6437, where some json messages are coming in. I've seen in my webbrowser that the port is indeed active, but when I try udpreceive nothing comes out - which probably means that I'm not getting the process. Best, Joao

Re: [PD] Pd Meeting in Berlin

2017-08-25 Thread João Pais
will be later uploaded to New Blankets. Best, Joao 2017-08-24 8:31 GMT+02:00 João Pais <jmmmp...@gmail.com>: > Hello list, > > On Friday, 25th August from 12h onwards there will be a meeting in Berlin > with Katja Vetter, João Pais, Fred Jan Kraan, IOhannes m zmoelnig, > Alexa

[PD] Pd Meeting in Berlin

2017-08-24 Thread João Pais
Hello list, On Friday, 25th August from 12h onwards there will be a meeting in Berlin with Katja Vetter, João Pais, Fred Jan Kraan, IOhannes m zmoelnig, Alexandros Drymonitis, Max Neupert and Joe Deken. In this meeting each participant will present some current projects, and we'll talk Pd. Around

Re: [PD] wild structs on pd files

2017-06-08 Thread João Pais
There's no way to globally delete all scalars belonging to a given "struct" except by manually editing the patch. cheers Miller On Thu, Jun 08, 2017 at 08:04:58PM +0200, João Pais wrote: > Hi again Miller, > > I had a question regarding structs. When editing my patches in a text

[PD] wild structs on pd files

2017-06-08 Thread João Pais
Hi again Miller, I had a question regarding structs. When editing my patches in a text editor, I noticed that at the top of the patch there were some "stowaway" structs (and scalars), which can only come from abstractions I used in the main patch - but these abstractions should have the

Re: [PD] data structures question ...

2017-05-22 Thread João Pais
I think y’all should make a data structure feature request list (if there isn’t one already). I already sent a couple of them to Miller sometime ago, but it might take a while...___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and

Re: [PD] patch with Loadbang loses data structure

2017-05-20 Thread João Pais
for that it works to draw first the black, then the white keys, then vis 0,vis 1. It's not logical, but it seems to work. also works for me. and it helps for filtering the right key events (see my solution). Seems like a magic for me... Anyway I adopt Christof mixed with João

[PD] Laptop + interface suggestion

2017-03-23 Thread João Pais
Dear list, I'm looking to buy new laptop and a matching audio interface for daily use + audio performance/programming (not video). I would be interested to know what are the current trends nowadays, and what experiences you have. My current setup is: - windows 10 (won't change) - Lenovo X61s

Re: [PD] abstractions with arguments

2017-01-13 Thread João Pais
also notice, you can use $0 as an argument (very useful when assuring individuality of variables, and still connect them to the parent patch) On 2017-01-12 02:01, jlistshit wrote: Forgive me, if this has been asked before: Is there a way to insert arguments into an object box when loading an

Re: [PD] New Blankets Support: *PdCon, *Pd-weekends, *Artists-in-Transit *equipment grants -- and more

2017-01-08 Thread João Pais
Hello, * On Saturday *January 15 the NB Benevolent netcast show will be dedicated to promote: *-- Widening the Worldwide Welcome to Puredata --* and the guest on January 15 will be Miller Puckette, whom some of you may have heard of. I was having a look at it, but I

Re: [PD] Graphical envelope generator with breakpoints

2017-01-08 Thread João Pais
a kind of first version of that is in my [jmmmp/bezier]. I had hoped of continue to develop it until it could have all those features, but it didn't happen yet (I guess I didn't need it yet). Hey all I'm wondering if someone implemented a graphical envelope generator with mouse-draggable

Re: [PD] Request - Deleting struct instances, progress?

2017-01-03 Thread João Pais
> in the meantime, here's a little hack how to delete specific scalar > instances (as long the scalar has a drawing instruction and is visible + > editable). get the scalar's x + y coordinates with [get], then send > following message to the subpatch containing the scalar: > [mouse x y 1 0,

Re: [PD] Purr Data rc2

2016-12-28 Thread João Pais
This wasn't replied yet as well: > > - is it possible to disable localization? I'm a portuguese living in > germany, but for me Pd is an english program. > > Sure. How do your other programs handle this? What do they default to, > and how > do you change them? > I don't know. Usually they

Re: [PD] Purr Data rc4

2016-12-28 Thread João Pais
Hi, here are some more details, in no specific order: - just saw now that gop borders can be dragged and resized manually. Very nice touch. Some suggestions: - border resizing for vertical/horizontal dimensions (not just all at once) - double-clicking the red square the settings window opens

Re: [PD] Purr Data rc4

2016-12-24 Thread João Pais
just to warn, the 64b-windows exe file is called rc3. but I couldn't find any documentation saying which version is really installed. would it make sense to add a clear reference to the document "about pd-2lork", as in pd-ext? Purr Data release candidate 4! * fixed race when opening pd

Re: [PD] Scrolling/panning window from Pd

2016-12-04 Thread João Pais
To make things clearer, I should have written "canvas" instead of "window". ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list

[PD] Scrolling/panning window from Pd

2016-12-04 Thread João Pais
Hello list, I wanted to know if someone ever managed to make a Pd window scroll (or pan) using a Pd patch, or a plugin that is activated by Pd. I don't know enough from Tcl/Tk to try it myself. Best, jmmmp ___ Pd-list@lists.iem.at mailing list

Re: [PD] Purr Data rc2

2016-12-02 Thread João Pais
Hi, here is a small report: - is it possible to disable localization? I'm a portuguese living in germany, but for me Pd is an english program. - midi settings still aren't chosen automatically (such as audio is), and don't stick when restarting the program. They do work once set, though. -

Re: [PD] Purr Data Beta 3

2016-11-07 Thread João Pais
Hi Jonathan, I'm trying shortly purr-d in an old eeepc (xp). Audio doesn't work, but the other things seem to. I only had some moments to try out so far, for now I can only write: - since the svg format is being partially used, is there a place to document which methods are stable, which aren't,

[PD] Pd Extended in Mac doesn't load externals

2016-10-01 Thread João Pais
Hello list, a friend is complaining that pd-extended doesn't load the externals on his mac. Does anyone has any hints on how to fix this? All code is made with namespaces, e.g. [zexy/tabdump] etc. Best, Joao ___ Pd-list@lists.iem.at mailing list

Re: [PD] purr data beta1

2016-09-30 Thread João Pais
didn't Dan manage a Pd "port" with his pdparty? No. PdParty uses libpd and emulates the GUI objects via send/receives. There is no ability to patch, only run patches and scenes which are >essentially folders with a specific layout. I could/would consider adding this in the future

Re: [PD] purr data beta1

2016-09-30 Thread João Pais
On 09/30/2016 09:11 PM, João Pais wrote: ah, I was thinking of android and iOs ah, that one again the problem with iOS is that - all software must go through the AppStore AND - the AppStore does not allow GPL software. the "problem" with the entire external collection as w

Re: [PD] purr data beta1

2016-09-30 Thread João Pais
ah, I was thinking of android and iOs (I thought those were the official "mobile plattforms") There's no support for android or ios atm, and adding it would be beyond what's possible in the first release. ok. but would it be something for the future, or unforeseable for now? Just for

Re: [PD] purr data beta1

2016-09-30 Thread João Pais
cool. some random remarks, most of them just tiny details: - when installing on windows, the installer didn't ask for the installation folder. I imagine it took it from the previous folder purr-d was installed. But in case I would want to change the installation place, that would be on the

Re: [PD] purr data beta1

2016-09-30 Thread João Pais
ah, tested the 64b version on w7 cool. some random remarks, most of them just tiny details: - when installing on windows, the installer didn't ask for the installation folder. I imagine it took it from the previous folder purr-d was installed. But >in case I would want to change the

Re: [PD] purr data beta1

2016-09-30 Thread João Pais
ah, I was thinking of android and iOs (I thought those were the official "mobile plattforms") Any chance to also pack purr-d to the mobile plattforms? so that a patch could be used there as well, with no >vanilla-compatibility? Which platforms? This is the beta 1 release of Purr Data

Re: [PD] purr data beta1

2016-09-30 Thread João Pais
Any chance to also pack purr-d to the mobile plattforms? so that a patch could be used there as well, with no vanilla-compatibility? This is the beta 1 release of Purr Data (the GUI port of Pd-l2ork) Change log: * fix many errors in the GUI * fix position of popup menu when zooming * fix

Re: [PD] pack_bang: warning?

2016-09-22 Thread João Pais
a coule of small updates: - instead of using [pack f p], I tried [list append]. Now the warning doesn't appear. - by changing a toggle order later in the row, the output is correct. Nevertheless, I would be interested to know what the warning means, and why is it better (?) to use list

[PD] pack_bang: warning?

2016-09-22 Thread João Pais
Hello list, I got the warning "pack_bang: warning: reentry with pointers unprotected". Does someone know what does this mean? This comes up when having a loop trying to spout out all scalars with the same x value - which doesn't seem to work, as I get 2 times the same pointer, instead of 2

Re: [PD] Read midi file into Pd

2016-09-11 Thread João Pais
The bytes can be converted with [list tosymbol] for getting characters like MThd and MTrk, otherwise it's a MIDI message or an integer. I must admit that's not easy to do the parse with internals because this is a bit complicated to make it an abstraction for me, I'll also try out

Re: [PD] Read midi file into Pd

2016-09-09 Thread João Pais
yes, all tracks are combined to one. But other than that, what's the limitation? And what about mrpeach/midifile? And why do you look for >something other than the two of them, what do you need? that is already a very big limitation, as the original file has 9 tracks (for now, maybe

Re: [PD] Read midi file into Pd

2016-09-09 Thread João Pais
Another way would be about using [mrpeach/binfile] and parse the file with internals following MIDI reference we can find in following link for example: http://www.ccarh.org/courses/253/assignment/midifile/ The first meta message should be obtained with [list split 23] where second byte

Re: [PD] Read midi file into Pd

2016-09-07 Thread João Pais
Yes, but with many limitations - all tracks are mixed, etc... Am 07.09.2016 8:00 nachm. schrieb "Berenger Recoules" < berenger.recou...@gmail.com>: > > I think [cyclone/seq] can do that if I'm not mistaken. > > 2016-09-07 19:21 GMT+02:00 João Pais <jmmmp.

[PD] Read midi file into Pd

2016-09-07 Thread João Pais
Hello list, just to know, besides [mrpeach/midifile], is there any other way of reading a midi file into Pd, and list the events/metadata/etc. inside? Best, jmmmp ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management ->

[PD] [PD-announce] jmmmp library update 0.47

2016-07-28 Thread João Pais
. For more informations and a tarball file, go visit http://puredata.info/downloads/jmmmp/releases/0.47 Best, João Pais ___ Pd-announce mailing list pd-annou...@lists.iem.at https://lists.puredata.info/listinfo/pd-announce

Re: [PD] [zexy/.] in windows (or alternative)

2016-07-01 Thread João Pais
lution. > > cheers > > On Fri, Jul 1, 2016 at 9:02 AM, João Pais <jmmmp...@gmail.com> wrote: > >> Hello list, >> >> I was trying to use zexy's scalarmult in windows, but due to its name >> being [.], it can initialize. There is a file called 0x2e.dll in the ze

[PD] [zexy/.] in windows (or alternative)

2016-07-01 Thread João Pais
Hello list, I was trying to use zexy's scalarmult in windows, but due to its name being [.], it can initialize. There is a file called 0x2e.dll in the zexy folder which I suspect it might be it (?), but [zexy/0x2e] doesn't open as well: maximum object loading depth 1000 reached zexy/0x2e ...

[PD] [PD-announce] jmmmp abstractions update 0.46

2016-05-27 Thread João Pais
and a tarball file, go to http://puredata.info/downloads/jmmmp/releases/0.46 Best, João Pais ___ Pd-announce mailing list pd-annou...@lists.iem.at https://lists.puredata.info/listinfo/pd-announce ___ Pd

Re: [PD] Edit Pd file to change coordinates. pdlua or other language?

2016-03-24 Thread João Pais
Hi, I tinkered around with tcl, until I think I found a version that suits my needs exactly: - I reversed the selection - if {[lsearch $lineList $lineCount] < 0} { - I commented out line puts "lines to patch: $lineList", so that the list of patched lines doesn't get saved with the patch

Re: [PD] Edit Pd file to change coordinates. pdlua or other language?

2016-03-24 Thread João Pais
HI Fred Jan, that sounds good. But I think you sent me the same file as before? They are exactly alike. I don't want to push it, but I noticed 2 details that I could mention. But ignore them if you have better things to do: - since I'm recording the console output of the tcl patch, only now I

Re: [PD] Edit Pd file to change coordinates. pdlua or other language?

2016-03-23 Thread João Pais
Hi Fred, I did some testing today when I had some more time. It works great, and if I use it in a command like > new.pd, I get the new patch out of it. If I may, I would ask for a small improvement: it would be great if the processing would be done in the opposite way; that is, all

Re: [PD] [sel] problem - matched value doesn't bang

2016-03-23 Thread João Pais
maybe I did something slightly different the other time. anyway, it's doing great now. Strange! it worked for me, picture attached. Mensaje telepatico asistido por maquinas. To: pd-list@lists.iem.at; lucard...@hotmail.com Subject: Re: [PD] [sel] problem - matched value doesn't bang Date:

Re: [PD] [sel] problem - matched value doesn't bang

2016-03-22 Thread João Pais
[* 100] [+ 0.5] [i] [/100] actually that one didn't work, I followed Cyrille's suggestion and multiplied the [sel] value also with 100. It's fixed now, everything works as it should. Best, Joao___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE

Re: [PD] [sel] problem - matched value doesn't bang

2016-03-22 Thread João Pais
hello, it look like rounding error. the rejected 91 is not really 91, but 90.99 or similar. using a [i] object, it is converted to 90. that would be one solution. the problem is that in other moments there will be floats there. what is the best way to avoid these errors? (had read

Re: [PD] [sel] problem - matched value doesn't bang

2016-03-22 Thread João Pais
I did try with individual objects while debugging, and the results were the same. You might also find that using individual math objects to solve the arithmetic rather than expr corrects the rounding error.___ Pd-list@lists.iem.at mailing list

[PD] [sel] problem - matched value doesn't bang

2016-03-22 Thread João Pais
Hello list, I have a problem with [sel], in a patch the matched value doesn't behave as expected. In case anyone can have a look, here is a patch with all the details. Thanks, Joao sel-bug.pd Description: Binary data ___ Pd-list@lists.iem.at

Re: [PD] Edit Pd file to change coordinates. pdlua or other language?

2016-03-21 Thread João Pais
Hi Fred, thanks, that looks promissing. But there is a problem, I'm on windows. Does the first line in the patch means that I have to find a unix computer to run it? Or can it be run from tcl? Best, Joao Hi João, It appeared to be a simple program in Tcl, which you should have, as it

Re: [PD] Edit Pd file to change coordinates. pdlua or other language?

2016-03-19 Thread João Pais
Hi Fred, This functionality can be created in any proper language, but it is hard to create a generic solution based on your example. For instance, how do you know it will be all the lines except the ones you specify, and do you really want all the objects at 100,100 ? Well, the purpose

[PD] Edit Pd file to change coordinates. pdlua or other language?

2016-03-19 Thread João Pais
Dear list, I wanted to edit some Pd files so that I can change the coordinates of *some* lines. For example, if in a pd file there is the content: #N struct 1164-element float x float y float nr float index float nr-show float tick-show; #N canvas 168 80 670 664 gui 0; #X obj 186 548

[PD] [PD-announce] Click Tracker - Version 1.4 is out!

2016-03-19 Thread João Pais
, refer to the Click Tracker's website at http://j.mp/click-tracker. You can also visit the Click Tracker on facebook - http://j.mp/clicktrackerfb - or on google plus - http://j.mp/clicktrackergp. With best regards, João Pais -- jmmmp...@gmail.com | skype: jmmmpjmmmp https://www.facebook.com

Re: [PD] GUI port: full triforce

2016-03-16 Thread João Pais
Great, I can test it as soon as possible. Am 16.03.2016 3:27 vorm. schrieb "Jonathan Wilkes via Pd-list" < pd-list@lists.iem.at>: > > Hi list, > I now have the GUI port of Pd-l2ork up and running on GNU/Linux, OSX, and > Windows. > > One final dungeon of build script revisions and I'll release an

Re: [PD] multiple [send] arguments

2016-03-10 Thread João Pais
In this situation i'd prepend the message with a destination name. Then use [route] to filter those destination names in the receives. I agree: in this particular case, the color message seems to go to lots of similar gui objects. So better to make a $0-gui (or similar) send variable.

Re: [PD] ggee [image] problem with jmmmp and all

2016-03-10 Thread João Pais
For this test I have installed “ggee” and “jmmmp” on Pd 0.46.7 on Win 8.1. I have no problems loading “rgb.ppm” for João`s swatch-gui.pd. João I recommend that you change the 2nd line in swatch-gui.pd: #X obj 150 53 image E:/jmmmp/elektronik/pd-jmp/jmmmp-ext/svn/jmmmp/examples/rgb.ppm;

Re: [PD] ggee [image] problem with jmmmp and all

2016-03-09 Thread João Pais
In someway I question myself, when I try to load [swatch] of jmmmp, image try to search the images in /Users/EstebanViveros when it should be >search in /Users/EstebanViveros/Library/jmmmp . Why it's happening? that file must be in the folder jmmmp/examples. I don't know where the jmmmp

Re: [PD] libraries from extended sitll being maintained?

2016-03-03 Thread João Pais
2016-03-03 7:27 GMT-03:00 João Pais <jmmmp...@gmail.com>: My library also has new things, it is now in deken. that's jmmmp right? exactly. I imagine people didn't stop developing, but there isn't a comfortable distribution method anymore. well, many were removed fro

Re: [PD] libraries from extended sitll being maintained?

2016-03-03 Thread João Pais
My library also has new things, it is now in deken. I imagine people didn't stop developing, but there isn't a comfortable distribution method anymore. Am 03.03.2016 12:42 vorm. schrieb "Alexandre Torres Porres" < por...@gmail.com>: > hello, in a rough count, there were around 85 extended

[PD] [change] inside [gemmouse] necessary?

2016-01-18 Thread João Pais
Hello list, I was trying out something with [gemmouse], and noticed that it has an integrated [change] in it: repeated values are filtered from its outlet. Since usually the output of any sensor is the values at a steady rate, does it make more sense to use the "normal" behaviour instead of

Re: [PD] [pix_data] - convert rgb values to pd canvas format

2016-01-08 Thread João Pais
Thanks for your help. Here is the resulting patch, pix2canvas. Sooner or later it will join the other abstractions in the jmmmp library. Best, Joao 2016-01-01 13:10 GMT+01:00 Roman Haefeli <reduz...@gmail.com>: > > On Thu, 2015-12-31 at 18:01 +0100, João Pais wrote: > > If

Re: [PD] animation api

2016-01-03 Thread João Pais
Is there an estimated release time of your edition, or do you need any help with testing etc? Hi list, I'm playing with adding a simple animation api to data structure drawing commands.The parameters will be sent to the GUI, and the GUI will take care of the ramp, delay, etc. I'm

Re: [PD] [pix_data] - convert rgb values to pd canvas format

2015-12-31 Thread João Pais
Ok. Do you know what should be done to convert to Pd's rgb format? I'm pretty sure the 4th value is alpha Sent from my iPhone On Dec 31, 2015, at 7:53 AM, João Pais <jmmmp...@gmail.com> wrote: Hello list, I'm trying to use [pix_data] to get the RGB values from an image, and

[PD] [pix_data] - convert rgb values to pd canvas format

2015-12-31 Thread João Pais
Hello list, I'm trying to use [pix_data] to get the RGB values from an image, and color a canvas using them. But the results come out a bit weird, as not all colors match. I can try to some a more detailed patch in a couple of days, but wanted to ask first the there is any example of how

Re: [PD] [gemhead]s vs. [separator]

2015-12-06 Thread João Pais
t help understand, many problems with >how rendering occurs. On Sat, Dec 5, 2015 at 9:15 AM, João Pais <jmmmp...@gmail.com> wrote: Hello list, I don't work with GEM so regularly, so I had a question regarding independent processing chains. I'm showing different [shpere]s, and wanted t

[PD] [gemhead]s vs. [separator]

2015-12-05 Thread João Pais
Hello list, I don't work with GEM so regularly, so I had a question regarding independent processing chains. I'm showing different [shpere]s, and wanted to do individual transformations on each, such as [color] and [translateXYZ]. Until now I used an individual [gemhead] for each [sphere],

[PD] Pd Problems Yosemite OS X 10.10

2015-10-27 Thread João Pais
Hello List, a friend is reporting that Pd has stopped working on his system, Yosemite OS X 10.10. Does anyone have a hint why this could be happening, and what can be done about it? Unfortunately I don't have access to his computer, so I can't say anything more than this. Best, jmmmp

Re: [PD] opposite behaviour of [delay]

2015-10-21 Thread João Pais
but notice that speedlim doesn't loose the last bang, it reschedules it. so there will be an extra bang coming out when the delay time is over. Joao thanks! 2015-10-21 17:30 GMT-02:00 IOhannes m zmölnig : On 10/21/2015 08:36 PM, Jonathan Wilkes via Pd-list wrote: Max and

Re: [PD] [data structures] array within an array, pd draw window scale/background canvas colour...

2015-05-27 Thread João Pais
many people already gave replies to the questions, so I leave the example of array encapsulation from my data structures workshop. Very important, you don't get mouse control of the encapsulated array, only of the top one. Maybe you should say exactly why you think you need encapsulated

Re: [PD] Q: about PD data structures

2015-05-04 Thread João Pais
In the pd conv in Weimar I gave a workshop on data structures, where mainly I adapted Frank's tutorial and added content of my own. Afaik, this is the most accessible tutorial for data structures for now. I wanted to steal Frank's symbol-array as well, but since I didn't redo this workshop

Re: [PD] [ot] Click Tracker - Code depository

2015-04-16 Thread João Pais
/libpd/libpd/wiki -- Forwarded message -- From: João Pais jmmmp...@gmail.com To: PD-List pd-list@lists.iem.at Cc:Date: Wed, 08 Apr 2015 11:32:20 +0200 Subject: [PD] [ot] Click Tracker - Code depository Hello list, with google code's demise, I'll have to move the files of my Click

[PD] [ot] Click Tracker - Code depository

2015-04-08 Thread João Pais
Hello list, with google code's demise, I'll have to move the files of my Click Tracker project somewhere else. Since this project isn't really a code project, but rather a wiki with manuals and a downloadable zip file, it seems to me that github isn't the best place to keep the project

[PD] get data from mp3 files

2015-04-04 Thread João Pais
Hello, I couldn't find an answer for this, so I doubt there is one: I have 100s of mp3 files, from which I needed to extract data - namely name, and duration. As I can tell, there isn't any object that does this, e.g. like [ext13/wavinfo] (hopefully I'm wrong). Does anyone has an elegant

Re: [PD] get data from mp3 files

2015-04-04 Thread João Pais
I couldn't find an answer for this, so I doubt there is one: I have 100s of mp3 files, from which I needed to extract data - namely name, and duration. Would that be file name, or artist name? yes, file name. although as a general idea it's interesting to get any field of the metadata.

Re: [PD] svg script (with pdlua?)

2015-03-13 Thread João Pais
in its numeric representation, then reverting all in character representation could help ? There is [list tosymbol] and [list fromsymbol] for such problem. If you use lua, i think it should be easy to convert from numeric to character representation. ++ Jack Le 11/03/2015 18:54, João Pais a écrit

[PD] svg script (with pdlua?)

2015-03-11 Thread João Pais
Hello list, I wanted to create an svg file using Pd, but it's a bit hard, as the character , can't be used by [textfile]. There could be some ways to circumvent this such as using another character and change it in a text editor. But I would like to ask if there is any other examples, e.g.

[PD] [PD-announce] Click Tracker - Version 1.3 is out!

2014-12-25 Thread João Pais
informations, refer to the Click Tracker's website https://code.google.com/p/clicktracker/. You can also visit the Click Tracker on facebook - http://goo.gl/raqJaZ - or on google plus - http://goo.gl/EPUrgt. With best regards, João Pais ___ Pd-announce

Re: [PD] gui toolkits

2014-12-24 Thread João Pais
Hi Jonathan, I can't weight in or help, as this is outside of my capabilities. But if anything is needed for grunt work - testing (on all systems), documentation, etc, I can help. Best, Joao___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and

Re: [PD] data structures......

2014-12-15 Thread João Pais
I can't do any programming, but I could do testing of whatever is necessary. Most of the build scripts for extended are still in the pd-l2ork git. It is a relatively simple matter of making sure: 1) tkpath builds cleanly on Windows (which it should) 2) tkdnd builds ok on Windows (which it

Re: [PD] Artikulation - datastructures

2014-12-04 Thread João Pais
if there would be a realization score to accompany the piece like in Stockhausen's Kontakte, maybe not so much time. and how many years work would it take to do that in pd data structures? On Thu, Dec 4, 2014 at 5:04 PM, Chris McCormick ch...@mccormick.cx wrote:

Re: [PD] data structures......

2014-11-29 Thread João Pais
GUI to Qt, leveraging QGraphicsview or QML. The features I've added should be common to any modern 2d API that does managed graphics. That includes Qt, SVG, probably GTK as well, but unfortunately not Tk. -Jonathan On Friday, November 28, 2014 5:28 PM, João Pais jmmmp...@googlemail.com

Re: [PD] data structures......

2014-11-29 Thread João Pais
are there any indications somewhere on how to do it? AFAICT there isn't any technical reason why Pd-l2ork couldn't be built and run on Windows. There might be some Linux-centric theming in the tcl files. But if someone wants to try to get it running on Windows I'll be happy to amend any

Re: [PD] data structures......

2014-11-29 Thread João Pais
, João Pais wrote: Yes they were, according to Miller's paper. And then the motivation stopped after a while... :) On 11/12/2014 03:33 PM, i go bananas wrote: couldn't that work be put to better use? depends on your definition of better. if i understand correctly, data structures have been _the_

Re: [PD] data structures......

2014-11-28 Thread João Pais
Yes they were, according to Miller's paper. And then the motivation stopped after a while... :) On 11/12/2014 03:33 PM, i go bananas wrote: couldn't that work be put to better use? depends on your definition of better. if i understand correctly, data structures have been _the_

<    1   2   3   4   >