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.

Miditool for velocity and other things in AUM

Hi,
I‘m looking for a miditool like the midiflow-limiter from JDoerr which I can deal as a plugin in AUM.
I would like to limit the input velocity of a midi instrument.
(in my case I would like to control better the midi outcoming from Midiguitar 2).

Does anybody has a tip?

Comments

  • edited February 2020

    @bates67

    Streambyter AUv3 is free

    # Velocity Limiter (remote controllable)
    # by audeonic
    IF LOAD
      ASS K0 = B0 15 # remote control event
      ASS L0 = 60 +P # current limit value
      SET LB0 SLIM # set labels to current limit
      SET LB1 L0 +D
    END
    
    # handle remote control of limit
    IF M0 == K0 K1
      ASS L0 = M2 # assign limit
      SET LB1 L0 +D # show current limit on label
    END
    
    # limit velocity
    IF MT == 90
      IF M2 > L0
        ASS M2 = L0
      END
    END
    
  • edited March 2020

    .

  • edited March 2020

    .

Sign In or Register to comment.