Re: [PD] mobmubplat and env~

2022-08-29 Thread Dan Wilcox
On second thought, your example is sending *too* libpd, so maybe this is a 
message handling bug in libpd.

> On Aug 29, 2022, at 3:13 PM, Dan Wilcox  wrote:
> 
> Lists and typed messages sent via libpd are always lists on the other end 
> whereas, I believe, simple lists within Pd can be interpreted as floats, ie. 
> a single float list message.
> 
>> On Aug 27, 2022, at 6:54 PM, pd-list-requ...@lists.iem.at 
>> <mailto:pd-list-requ...@lists.iem.at> wrote:
>> 
>> 
>> Message: 2
>> Date: Sat, 27 Aug 2022 09:15:21 -0700
>> From: Daniel Iglesia > <mailto:daniel.igle...@gmail.com>>
>> To: Giulio Moro mailto:giuliom...@yahoo.it>>
>> Cc: Simon Iten mailto:itensi...@gmail.com>>, the 
>> PureData - mailinglist
>>  mailto:pd-list@lists.iem.at>>
>> Subject: Re: [PD] mobmubplat and env~
>> Message-ID:
>>  > <mailto:canz10w0cdgessncenhyabnysqfp15l+oooyirok-nbistj+...@mail.gmail.com>>
>> Content-Type: text/plain; charset="utf-8"
>> 
>> 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.
> 
> 
> Dan Wilcox
> @danomatika <http://twitter.com/danomatika>
> danomatika.com <http://danomatika.com/>
> robotcowboy.com <http://robotcowboy.com/>
> 
> 
> 


Dan Wilcox
@danomatika <http://twitter.com/danomatika>
danomatika.com <http://danomatika.com/>
robotcowboy.com <http://robotcowboy.com/>



___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


Re: [PD] mobmubplat and env~

2022-08-29 Thread Dan Wilcox
Lists and typed messages sent via libpd are always lists on the other end 
whereas, I believe, simple lists within Pd can be interpreted as floats, ie. a 
single float list message.

> On Aug 27, 2022, at 6:54 PM, pd-list-requ...@lists.iem.at wrote:
> 
> 
> Message: 2
> Date: Sat, 27 Aug 2022 09:15:21 -0700
> From: Daniel Iglesia  <mailto:daniel.igle...@gmail.com>>
> To: Giulio Moro mailto:giuliom...@yahoo.it>>
> Cc: Simon Iten mailto:itensi...@gmail.com>>, the 
> PureData - mailinglist
>       mailto:pd-list@lists.iem.at>>
> Subject: Re: [PD] mobmubplat and env~
> Message-ID:
><mailto:canz10w0cdgessncenhyabnysqfp15l+oooyirok-nbistj+...@mail.gmail.com>>
> Content-Type: text/plain; charset="utf-8"
> 
> 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.


Dan Wilcox
@danomatika <http://twitter.com/danomatika>
danomatika.com <http://danomatika.com/>
robotcowboy.com <http://robotcowboy.com/>



___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


Re: [PD] mobmubplat and env~

2022-08-27 Thread Simon Iten
Of course! Thanks. I missed that since it was working on the "emulation".

Great

On Sat, 27 Aug 2022, 18:15 Daniel Iglesia,  wrote:

> 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 experience with mobmuplat, but to validate whether it
>> is the env~ object that stops working with the GUI, try to use its output
>> to control audio output (e.g.: attached patch). This will tell you whether
>> it's a GUI or env~ issue. If this works, maybe try throttling the messages
>> you send to the numberbox?
>>
>>
>>
>> Simon Iten wrote on 27/08/2022 11:25:
>> > h ithere,
>> >
>> > i am using mobmuplat for a live-sound-fx setup, which works quite
>> nicely! (up until now i only used it as a midi controller setup)
>> >
>> > i am trying to get a sort of input vu meter working, so i can adjust
>> the gain in the analog domain before it hits the iPad.
>> >
>> > i did a simple test patch, that works in the editor, but does not on
>> the actual device. the slider does not move at all.
>> > if i open the PD-patch directly in mobmuplat it works. (the numberbox
>> displays the loudness correctly)
>> > it is as if the env~ object stops working, as soon as i try to use the
>> mobmu GUI..
>> >
>> > maybe someone knows what is going on? or am i missing the obvious? find
>> attached the two test files.
>> >
>> >
>> > ___
>> > Pd-list@lists.iem.at mailing list
>> > UNSUBSCRIBE and account-management ->
>> https://lists.puredata.info/listinfo/pd-list
>> >
>> ___
>> Pd-list@lists.iem.at mailing list
>> UNSUBSCRIBE and account-management ->
>> https://lists.puredata.info/listinfo/pd-list
>>
>
___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


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 experience with mobmuplat, but to validate whether it
> is the env~ object that stops working with the GUI, try to use its output
> to control audio output (e.g.: attached patch). This will tell you whether
> it's a GUI or env~ issue. If this works, maybe try throttling the messages
> you send to the numberbox?
>
>
>
> Simon Iten wrote on 27/08/2022 11:25:
> > h ithere,
> >
> > i am using mobmuplat for a live-sound-fx setup, which works quite
> nicely! (up until now i only used it as a midi controller setup)
> >
> > i am trying to get a sort of input vu meter working, so i can adjust the
> gain in the analog domain before it hits the iPad.
> >
> > i did a simple test patch, that works in the editor, but does not on the
> actual device. the slider does not move at all.
> > if i open the PD-patch directly in mobmuplat it works. (the numberbox
> displays the loudness correctly)
> > it is as if the env~ object stops working, as soon as i try to use the
> mobmu GUI..
> >
> > maybe someone knows what is going on? or am i missing the obvious? find
> attached the two test files.
> >
> >
> > ___
> > Pd-list@lists.iem.at mailing list
> > UNSUBSCRIBE and account-management ->
> https://lists.puredata.info/listinfo/pd-list
> >
> ___
> Pd-list@lists.iem.at mailing list
> UNSUBSCRIBE and account-management ->
> https://lists.puredata.info/listinfo/pd-list
>
___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


Re: [PD] mobmubplat and env~

2022-08-27 Thread Giulio Moro via Pd-list

Not that I have any experience with mobmuplat, but to validate whether it is 
the env~ object that stops working with the GUI, try to use its output to 
control audio output (e.g.: attached patch). This will tell you whether it's a 
GUI or env~ issue. If this works, maybe try throttling the messages you send to 
the numberbox?



Simon Iten wrote on 27/08/2022 11:25:

h ithere,

i am using mobmuplat for a live-sound-fx setup, which works quite nicely! (up 
until now i only used it as a midi controller setup)

i am trying to get a sort of input vu meter working, so i can adjust the gain 
in the analog domain before it hits the iPad.

i did a simple test patch, that works in the editor, but does not on the actual 
device. the slider does not move at all.
if i open the PD-patch directly in mobmuplat it works. (the numberbox displays 
the loudness correctly)
it is as if the env~ object stops working, as soon as i try to use the mobmu 
GUI..

maybe someone knows what is going on? or am i missing the obvious? find 
attached the two test files.


___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list

#N canvas 593 27 546 593 12;
#X obj 45 145 *~;
#X floatatom 96 79 5 0 100 0 - - - 0;
#X obj 96 117 dbtorms;
#X obj 5 42 cnv 1 535 1 empty empty empty 8 12 0 13 #00 #00
0;
#X obj 5 552 cnv 1 535 1 empty empty empty 8 12 0 13 #00 #00
0;
#X obj 45 169 env~ 2048 1024;
#X obj 45 114 adc~;
#X obj 136 54 loadbang;
#X msg 103 55 100;
#X floatatom 46 243 5 0 0 0 - - - 0;
#X obj 155 274 s toGUI;
#X msg 133 240 /input \$1;
#X connect 0 0 5 0;
#X connect 1 0 2 0;
#X connect 2 0 0 1;
#X connect 5 0 9 0;
#X connect 6 0 0 0;
#X connect 7 0 8 0;
#X connect 8 0 1 0;
#X connect 9 0 11 0;
#X connect 11 0 10 0;
___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


[PD] mobmubplat and env~

2022-08-27 Thread Simon Iten
h ithere,

i am using mobmuplat for a live-sound-fx setup, which works quite nicely! (up 
until now i only used it as a midi controller setup)

i am trying to get a sort of input vu meter working, so i can adjust the gain 
in the analog domain before it hits the iPad.

i did a simple test patch, that works in the editor, but does not on the actual 
device. the slider does not move at all.
if i open the PD-patch directly in mobmuplat it works. (the numberbox displays 
the loudness correctly)
it is as if the env~ object stops working, as soon as i try to use the mobmu 
GUI..

maybe someone knows what is going on? or am i missing the obvious? find 
attached the two test files.



input_vu.pd
Description: Binary data


input_vu.mmp
Description: Binary data
___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list