Re: [PD] Access to camera data on smart device with pddroid att. Chris McCormick

2014-11-25 Thread Daniel Iglesia
PdDroidParty and MobMuPlat are built on libpd, which only supports pd-vanilla functionality. There is no video functionality. On Tue, Nov 25, 2014 at 12:01 PM, Jonathan Aardestrup jonasti...@gmail.com wrote: Hi For my university project about computer vision and Pure Data I'm trying to

Re: [PD] spigot~

2015-02-23 Thread Daniel Iglesia
Here's what I do, in order to avoid clicks...see attached. On Mon, Feb 23, 2015 at 2:10 PM, Gerhard Lang lang.gerh...@gmail.com wrote: How do you realise spigot~ ? Tx in advance for your assistance Gerhard ___ Pd-list@lists.iem.at mailing list

Re: [PD] spigot~

2015-02-23 Thread Daniel Iglesia
Yes, I had many of them in a resource-limited environment (mobile device), and so the optimization seemed worthwhile...but don't have hard data on the difference. Sent from my iPhone On Feb 23, 2015, at 3:33 PM, IOhannes m zmölnig zmoel...@iem.at wrote: On 02/23/2015 11:21 PM, Daniel

Re: [PD] Needing to build an Android/iOS application.

2015-11-16 Thread Daniel Iglesia
Hi Mario (Caveat: I'm the developer of MobMuPlat) What does "send the file, by Bluetooth through the serial port" mean? Bluetooth is a wireless protocol, serial port usually implies the hardware port on the device. Do you mean a separate piece of hardware that is connected to the phone/tablet?

Re: [PD] MobMuPlat - data from several iPads to one PC

2016-01-12 Thread Daniel Iglesia
10:11 PM, pd-list-requ...@lists.iem.at wrote: > > *From: *Daniel Iglesia <daniel.igle...@gmail.com> > *Subject: **Re: [PD] MobMuPlat - data from several iPads to one PC* > *Date: *January 12, 2016 at 10:10:10 PM MST > *To: *Billy Stiltner <billy.stilt...@gmail.com> > *Cc: *

Re: [PD] MobMuPlat - data from several iPads to one PC

2016-01-12 Thread Daniel Iglesia
t; really. It's in the PureData class I believe. > > (PdParty Open Beta coming around this weekend.) > > enohp ym morf tnes > -- > Dan Wilcox > danomatika.com > robotcowboy.com > > On Jan 12, 2016, at 10:39 PM, Daniel Iglesia <daniel.igle...@gmail.com>

Re: [PD] New "native" Pd GUI support in MobMuPlat

2016-01-08 Thread Daniel Iglesia
I'm glad you asked! It's done in a slightly convoluted, potentially fragile, possibly un-scalable way. When a user loads a .pd file, pre-proccessing is done on the .pd text to generate _two_ new .pd files, one for execution, and one for display The two communicate with each other. This split is

Re: [PD] MobMuPlat - data from several iPads to one PC

2016-01-13 Thread Daniel Iglesia
Of course, best of all would be additional functionality on [route] that enables routing by slashes, like the CNMAT [osc-route] max object. On Tue, Jan 12, 2016 at 10:55 PM, Daniel Iglesia <daniel.igle...@gmail.com> wrote: > Yes, I've seen that behavior of oscformat and oscparse. And, w

Re: [PD] MobMuPlat - pd extended, personal pd objects and subfolders

2016-01-18 Thread Daniel Iglesia
Hi Jean Marie, Glad to hear you are enjoying working with it. These are all good questions that hit on both the current pain points of iOS development/file management, and my own sloth towards further developing the file system features. 1) It is possible to use other OSC objects (such as the

[PD] Announcing native Pd patch display in MobMuPlat Android

2016-02-28 Thread Daniel Iglesia
Hi all, A little while ago, I released a version of MobMuPlat for iOS with native Pd patch rendering. https://itunes.apple.com/us/app/mobmuplat/id597679399?mt=8 Now, I'd like to announce that feature has come to Android as well!

Re: [PD] Does PD find you a job?

2016-03-13 Thread Daniel Iglesia
In my limited experience and opinion: Pd _by itself_ does not lead to a lot of job opportunities. However, when used as a tool in combination with other platforms to create products/outcomes, it can be a very efficient way to create software that has a live audio component (particularly due to

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

2016-03-19 Thread Daniel Iglesia
I'd guess it probably _is_ doable in Pd, with some tangled use of the [text] (using "search" and "set"). When I do this type of manipulation, it's for mobile, so I'm limited to Objective-C and Java, but if you use Java you could adapt Chris' parser:

Re: [PD] Announcing native Pd patch display in MobMuPlat Android

2016-03-02 Thread Daniel Iglesia
Link has been updated, thanks for reminding me... On Wed, Mar 2, 2016 at 2:36 AM, Laurent Willkomm <willk...@pt.lu> wrote: > On 02/28/2016 06:33 PM, Daniel Iglesia wrote: > >> Hi all, >> >> A little while ago, I released a version of MobMuPlat for iOS wit

Re: [PD] mobmuplat editor on Ubuntu

2016-04-27 Thread Daniel Iglesia
The .jar file should also be double-clickable. Let me know if it isn't on Ubuntu. On Wed, Apr 27, 2016 at 3:10 AM, IOhannes m zmoelnig wrote: > On 2016-04-27 11:45, Liam Goodacre wrote: > > How do I install or run the Mobmoplat editor on Ubuntu 16.04? I can't > find

[PD] Arbitrary meshes/drawlines in GEM?

2016-08-05 Thread Daniel Iglesia
I have (large, e.g. size >512) quickly-varying arrays of data in Pd that I'd like to turn into vertices/lines in GEM. How do I either 1) draw a large mesh (such as with jit.gl.mesh) without having to, for example, specify a [polygon] with 512 inlets or 2) send individual drawline commands to

Re: [PD] smoothing numbers: something like Max's "slide" object?

2017-01-18 Thread Daniel Iglesia
> On Wed, Jan 18, 2017 at 3:45 PM, Daniel Iglesia <daniel.igle...@gmail.com> > wrote: > >> Grabbing the previous incoming value, and one [expr] should do it, to >> implement a first order filter >> >> y[i] := y[i-1] + α * (x[i] - y[i-1]) >> >

Re: [PD] smoothing numbers: something like Max's "slide" object?

2017-01-18 Thread Daniel Iglesia
Grabbing the previous incoming value, and one [expr] should do it, to implement a first order filter y[i] := y[i-1] + α * (x[i] - y[i-1]) as [expr if($f1>$f2, $f3+.1*($f1-$f3), $f3+.2*($f1-$f3))] where $f1 is the incoming number, $f2 is the previous incoming number, the output of this expr is

Re: [PD] on android to root n linux or not

2016-10-13 Thread Daniel Iglesia
Never used it or seen it in action, but there's https://play.google.com/store/apps/details?id=com.aide.ui=en plus some others on https://blog.idrsolutions.com/2014/12/android-apps-ide-for-java-coder-programmers/ though I doubt anything is going to be as well-supported as Android Studio...let me

Re: [PD] lipbpd for android on a Mac error

2017-06-06 Thread Daniel Iglesia
That message implies that your build process is compiling the native C code with the NDK. That used to be an optional part of compiling for android (if you didn't want to use the precompiled .so files that came with the repo...do you have those?). More recently, a pair of developers added a

Re: [PD] pd on pi zero ?

2017-09-01 Thread Daniel Iglesia
I got smooth audio stereo output (didn't test input) with a Behringer U-Control UCA202 and a pi-zero. I just tried a simple sine wave, I didn't push it to see what happens under load...but now I'm curious to revisit it and see... On Fri, Sep 1, 2017 at 10:16 AM, Theron Trowbridge <

Re: [PD] vanilla replacement for mrpeach/routeOSC

2019-04-30 Thread Daniel Iglesia
In case it's of use, I had this problem as well, and did the fiddly arcane method for pure vanilla. See this patch, and look in the abstractions 'oscparse-mobmuplat' and 'oscformat-mobmuplat'. They take the oscparse/oscformat message convention (i.e. spaces) and turn it into an address with

Re: [PD] display weed names in latin on android

2019-08-03 Thread Daniel Iglesia
I tried it on MobMuPlat. The issue is not the rendering the symbol object, but the fact that you are using graph-on-parent, which AFAIK no mobile app (PdDroidParty/PdParty/MobMuPlat) supports. Put your symbol object on the top level of the patch and it should work. On Sat, Aug 3, 2019 at 2:06 PM

Re: [PD] Mobmuplat Menu selection from PD Patch.

2021-08-22 Thread Daniel Iglesia
Can you elaborate? Do you mean that you want to use a drop-down while looking at the Pd GUI in MobMuPlat? Or that you want to programmatically set, from Pd, the contents of a MobMuPlat GUI drop down? On Sun, Aug 22, 2021 at 8:04 AM Simon Iten wrote: > As the title says: > > Can I select a menu

Re: [PD] MobMuPlat multitouch and preset saving

2021-08-14 Thread Daniel Iglesia
hit or > miss. > > > >> Am 14.08.2021 um 00:43 schrieb Simon Iten : >> >> thanks! >> >>>> On 11 Aug 2021, at 02:38, Daniel Iglesia wrote: >>> >>> Hi >>> >>> 1) The multitouch widget sends out 4 dif

Re: [PD] MobMuPlat multitouch and preset saving

2021-08-10 Thread Daniel Iglesia
Hi 1) The multitouch widget sends out 4 different streams of data, each sorted a different way, for different desired usage. In your case, if you listen on "touchesByVox", the first element is the voice number, so a [route 1 2 3 4 5] should separate it into a stream per voice. Is that what you

Re: [PD] Pd in cross-platform frameworks

2021-10-08 Thread Daniel Iglesia
I use Flutter for my day job, which I highly prefer to native iOS and Android development. (If I ever have the time and energy, I am considering rewriting MobMuPlat in Flutter, which would unite 4 separate implementations (iOS, Android, Java Swing for desktop, MacOs) into a single

Re: [PD] mobmubplat and env~

2022-08-27 Thread Daniel Iglesia
Hi Simon Change [ /input $1 ( to [ list /input $1 ( Looks like there is a difference in message/list handling in libpd vs desktop pd, regarding interpreting a message as a list. On Sat, Aug 27, 2022 at 3:21 AM Giulio Moro via Pd-list < pd-list@lists.iem.at> wrote: > Not that I have any

Re: [PD] Reading/writing a HID device current best practice?

2022-09-06 Thread Daniel Iglesia
I know this isn't the desired answer, but my strategy (a few years ago, on Raspberry Pi, haven't tried HID since then) was to launch a python script to listen for HID messages, then route them via UDP into a local port on which Pd would listen and consume the messages. I don't recall if I had to

Re: [PD] pd for android and abl_link~

2023-02-16 Thread Daniel Iglesia
Didn't know that jcenter is no longer active. Is pd-for-android available on maven? Or does it need to be a locally-available dependency? On Thu, Feb 16, 2023 at 12:27 PM Orm Finnendahl < orm.finnend...@selma.hfmdk-frankfurt.de> wrote: > Hi, > > I'd like to build MobMuPlat with pdlib including

Re: [PD] pd for android and abl_link~

2023-02-16 Thread Daniel Iglesia
wrote: > Hi Daniel, > > pd-for-android is available on maven central. > > https://search.maven.org/artifact/io.github.libpd.android/pd-core > > On Thu, Feb 16, 2023, 22:10 Daniel Iglesia > wrote: > >> Didn't know that jcenter is no longer active. Is pd-for-andro

Re: [PD] pd for android and abl_link~

2023-04-30 Thread Daniel Iglesia
untime on that machine won't cooperate. >> > >> > Supersad, but it's beyond my skillset to resurrect the code. I guess >> > we'll just have to hope the .apk of the current version keeps working. >> > >> > --- >> > Orm >> > >> > Am

Re: [PD] pd for android and abl_link~

2023-04-13 Thread Daniel Iglesia
killset to resurrect the code. I guess > > we'll just have to hope the .apk of the current version keeps working. > > > > --- > > Orm > > > > Am Donnerstag, den 16. Februar 2023 um 14:21:44 Uhr (-0800) schrieb > Daniel Iglesia: > >> Thanks Tal >

Re: [PD] Mobmuplat bug...

2023-07-10 Thread Daniel Iglesia
Please file an issue on the github issue tracker https://github.com/monkeyswarm/MobMuPlat/issues On Mon, Jul 10, 2023 at 4:31 PM Simon Iten wrote: > Don’t know if mobmuplat is still developed further. > > I found a problem: > > When programatically switching to a specific page (x) of a GUI via

Re: [PD] Mobmuplat bug...

2023-07-11 Thread Daniel Iglesia
t; hans > > Am 11.07.2023 um 03:27 schrieb Daniel Iglesia : > > Please file an issue on the github issue tracker > https://github.com/monkeyswarm/MobMuPlat/issues > > On Mon, Jul 10, 2023 at 4:31 PM Simon Iten wrote: > >> Don’t know if mobmuplat is still develope

Re: [PD] receive UDP message from 224.0.0.1

2024-01-11 Thread Daniel Iglesia
Context: the original LANdini (custom networking protocol) implementation and demo software was on supercollider, so used the default SC port number for the broadcast pings. I kept that default in the MobMuPlat port in order to allow for interop between various clients. Sent from my iPhone >