Loopy Pro: Create music, your way.

What is Loopy Pro?Loopy Pro is a powerful, flexible, and intuitive live looper, sampler, clip launcher and DAW for iPhone and iPad. At its core, it allows you to record and layer sounds in real-time to create complex musical arrangements. But it doesn’t stop there—Loopy Pro offers advanced tools to customize your workflow, build dynamic performance setups, and create a seamless connection between instruments, effects, and external gear.

Use it for live looping, sequencing, arranging, mixing, and much more. Whether you're a live performer, a producer, or just experimenting with sound, Loopy Pro helps you take control of your creative process.

Download on the App Store

Loopy Pro is your all-in-one musical toolkit. Try it for free today.

What midi app will allow me to send PC (Program Change) messages to scroll through AUM presets?

13»

Comments

  • @rs2000 ah! I was connecting it using midi Controls, thnx

  • @Gavinski said:
    @rs2000 ah! I was connecting it using midi Controls, thnx

    Thing is though - Crystalline loads in FX slot - can’t route midi source to it

  • @uncledave said:
    Here's the StreamByter implementation. Copy/paste this into a StreamByter window and Install Rules. Route the MIDI as you need.
    Edit: Added handler for the menu at the top. You can select any PC number from that, then up/down from there. And btw, the number displayed is the value sent, range 0..127.

    #PCUpDown
    
    If load
    Set name PCsend
    Set Q0 Current_PC 0 7F +Menu
    Set Q1 Up +Button
    Set Q2 Down +Button
    Set Q3 Reset +Button
    Set Q4 +Hide
    Set Q5 +Hide
    Set Q6 +Hide
    Set Q7 +Hide
    Set Slider_Display 1
    
    Alias J00 theCount
    Ass J00 = 0
    
    Sub UpdateCount pMode
       Ass J01 = theCount
       If pMode == 0
          Ass theCount = Q0
       End
       If pMode == 1
          If theCount < 7F
             Mat theCount = theCount + 1
          End 
       End
       If pMode == 2
          If theCount > 0
             Mat theCount = theCount - 1
          End 
       End
       If pMode == 3
          Ass theCount = 0
       End
       If theCount != J01
          Send C0 theCount   # new PC message
          Ass Q0 = theCount
       End
    End
    
    End # Initialization ———————————————————————————
    
    If M0 == F0 7D 01     # handle control change
       UpdateCount M3
    End
    

    This pic shows it working. I just routed the output to another SB to view the output.

    This uses 4% DSP in my iPad 6, much better than 18% for the Drambo version. If you lose sight of the SB buttons window, just tap the globe icon in the lower right.

    This also works Dave, thanks - nice elegant solution

  • edited June 2022

    @Gavinski said:

    @Gavinski said:
    @rs2000 ah! I was connecting it using midi Controls, thnx

    Thing is though - Crystalline loads in FX slot - can’t route midi source to it

    If you open the app and tap on the MIDI Control (sliders) icon in the title bar (in AUM), you can route MIDI to its AUv3 parameters, and to loading presets.

    Edit: If the FX app can receive MIDI directly, it appears in the AUM routing matrix, or it can be configured via the Keyboard icon in its title bar. This availability depends on how the developer has defined its AUv3 properties.

  • @Gavinski said:

    @Gavinski said:
    @rs2000 ah! I was connecting it using midi Controls, thnx

    Thing is though - Crystalline loads in FX slot - can’t route midi source to it

    Yes you can. If Crystalline can receive PC messages then it makes no difference where they come from, no matter if it's Mozaic, Streambyter or Drambo.
    Works here:

  • @uncledave said:

    @Gavinski said:

    @Gavinski said:
    @rs2000 ah! I was connecting it using midi Controls, thnx

    Thing is though - Crystalline loads in FX slot - can’t route midi source to it

    If you open the app and tap on the MIDI Control (sliders) icon in the title bar (in AUM), you can route MIDI to its AUv3 parameters, and to loading presets.

    Edit: If the FX app can receive MIDI directly, it appears in the AUM routing matrix, or it can be configured via the Keyboard icon in its title bar. This availability depends on how the developer has defined its AUv3 properties.

    I'll have to look again but i remember it didn't appear on the right side of the matrix

  • @rs2000 said:

    @Gavinski said:

    @Gavinski said:
    @rs2000 ah! I was connecting it using midi Controls, thnx

    Thing is though - Crystalline loads in FX slot - can’t route midi source to it

    Yes you can. If Crystalline can receive PC messages then it makes no difference where they come from, no matter if it's Mozaic, Streambyter or Drambo.
    Works here:

    Will try later, wasn't able to get it to work earlier tho, whatever i tried.

  • @Gavinski Crystalline should appear here:

  • @Gavinski said:

    @espiegel123 said:

    @Gavinski said:

    @espiegel123 said:

    @espiegel123 said:

    @Gavinski said:

    @HotStrange said:
    There’s an app called program changer. I haven’t used it but it’s free!

    It's not AUv3 though. Btw @espiegel123 do i remember you saying in another thread you could use notes instead of PC messages tl do this in AUM? It does look like it should work, but i couldn't get that working either

    Use notes instead of PC changes for what? In AUM , you can use just about any midi event type for anything. You can use notes or cc's for AUM's preset load actions of that is what you are asking.

    Did that and tried using AUM keyboard note input, didn’t work, not sure why

    I just tried it and it worked as expected. Can you post pictures of the midicontrol settings and routings.

    Have a look, thanks Ed:


    You didn’t activate a channel setting for the note you mapped . See how it says “off” on the line that sets the channel (above the note). The mapping won’t be active until you change that so it doesn’t say OFF .

  • @Gavinski said:

    @uncledave said:

    @Gavinski said:

    @Gavinski said:
    @rs2000 ah! I was connecting it using midi Controls, thnx

    Thing is though - Crystalline loads in FX slot - can’t route midi source to it

    If you open the app and tap on the MIDI Control (sliders) icon in the title bar (in AUM), you can route MIDI to its AUv3 parameters, and to loading presets.

    Edit: If the FX app can receive MIDI directly, it appears in the AUM routing matrix, or it can be configured via the Keyboard icon in its title bar. This availability depends on how the developer has defined its AUv3 properties.

    I'll have to look again but i remember it didn't appear on the right side of the matrix

    That would indicate that the dev has not defined the appropriate mode for an audio effect that can be controlled by MIDI. You may need to resort to controlling its AUv3 parameters.

Sign In or Register to comment.