• Architek1

    @pulsed Thanks I didn't know that little piece of knowledge. I should've posted sooner and saved myself a whole lot of time.

    posted in extra~ read more
  • Architek1

    Yeah I downloaded 0.46-4 for mac and didn't get the help files for net either. So thanks very much for this as I thought I might be crazy for a second.

    posted in technical issues read more
  • Architek1

    @EEight Thanks. I didn't know that import wasn't available but I did try your suggestion and I got the same error :

    mrpeach: can't load library
    /usr/Library/Pd/mrpeach/routeOSC.pd_darwin: dlopen(/usr/Library/Pd/mrpeach/routeOSC.pd_darwin, 10): no suitable image found. Did find:
    /usr/Library/Pd/mrpeach/routeOSC.pd_darwin: mach-o, but wrong architecture
    mrpeach/routeOSC

    posted in extra~ read more
  • Architek1

    I'm trying to get mrpeach to load using 0.45.4 on a MacBook Pro 5,1 running Yosemite. I have moved the library from pd-extended to the extra folder in vanilla. Pd Extended with mrpeach library works fine. It's unavailable when I import mrpeach in Vanilla. If I move it to a separate folder outside of Pd-0.45.4 64bit/Contents/Resources/extra where I have a couple of other libraries located that are working fine.

    I set the path /usr/Library/Pd/mrpeach startup flag -lib mrpeach I get mrpeach: can't load library.
    When I create object [import mrpeach] I get :
    import mrpeach
    ... couldn't create
    /usr/Library/Pd/mrpeach/udpreceive.pd_darwin: dlopen(/Users/Dz/Library/Pd/mrpeach/udpreceive.pd_darwin, 10): no suitable image found. Did find:
    /usr/Library/Pd/mrpeach/udpreceive.pd_darwin: mach-o, but wrong architecture

    Same error if I don't use a startup flag and just show path /usr/Library/Pd/mrpeach.

    Any ideas would be greatly appreciated.

    posted in extra~ read more
  • Architek1

    Also for those interested now there is a HoaLibrary http://www.mshparisnord.fr/hoalibrary/en/ and their Github https://github.com/CICM/HoaLibrary. It's a fantastic library that I"ve been working with the past few months.

    posted in technical issues read more
  • Architek1

    As with most things that you learn the curve in the beginning is a little overwhelming and the simplest things can be missed. After much ado (2 days of internet searches) I must humbly ask for assistance. I am building a processing sketch that uses position to determine frequencies to send to pd. These are passed along as the (float freq) variable in the function. Everything is good going leaving processing and into pd but I can't seem to parse the pdOscMessage correctly once it gets to pd. What am I missing?

    NetAddress puredata;

    oscP5 = new OscP5(this, 9000);
    puredata = new NetAddress("127.0.0.1",9000);

    Processing Osc Function

    void pdMessage(float freq) {

    //Osc Bundle creation
    OscBundle myBundle = new OscBundle();

    //New OSC Message creation
    OscMessage pdOscMessage = new OscMessage("/ " + freq);

    //Filter freq and Add an integer (midi) to the message to Pure Data NetAddress

    if (freq == 417) {
    oscP5.send(pdOscMessage.add(freq), puredata);

    }
    if (freq == 528) {
    oscP5.send(pdOscMessage.add(freq), puredata);

    }
    if (freq == 639) {
    oscP5.send(pdOscMessage.add(freq), puredata);

    }
    if (freq == 741) {
    oscP5.send(pdOscMessage.add(freq), puredata);

    }

    println("pdMessage: ", pdOscMessage);

    //Add message to the bundle
    myBundle.add(pdOscMessage);

    //Clearing message
    pdOscMessage.clear();
    }

    }

    Pd Canvas

    import mrpeach

    [udpreceive 9000]
    |
    |
    [upackOSC]
    |
    |
    [routeOSC /s /f ]
    \
    \
    [t b]
    |
    |
    [0\
    |
    |
    [osc~]
    |
    |
    [*~.1]
    |
    |
    [dac~]

    Thanks.

    posted in technical issues read more
  • Architek1

    I have switched my OSC messages to come from Iannix now for sake of speed instead of building a processing sketch every time.

    Pd Canvas

    [import mrpeach]

    [udpreceive 9000]
    |
    |
    [upackOSC]
    |
    |
    [routeOSC /cursor ]
    \
    | \
    | [print cursor] returns- cursor: 12 0.293095 0.851835 0.5 -2.75861 2.75459 0
    |
    |
    [routeOSC /f1 /f2 /f3]
    |
    |
    [print] returns nothing on any outlets except the last one which is the same as above

    Anyone with any ideas on how to parse this? I know this has got to be easier than it seems :)

    posted in technical issues read more
  • Architek1

    Sure thing. It's

    / 417.0 417

    or whatever float is passed in the pdOscMessage

    posted in technical issues read more
Internal error.

Oops! Looks like something went wrong!