Audiobus: Use your music apps together.

What is Audiobus?Audiobus is an award-winning music app for iPhone and iPad which lets you use your other music apps together. Chain effects on your favourite synth, run the output of apps or Audio Units into an app like GarageBand or Loopy, or select a different audio interface output for each app. Route MIDI between apps — drive a synth from a MIDI sequencer, or add an arpeggiator to your MIDI keyboard — or sync with your external MIDI gear. And control your entire setup from a MIDI controller.

Download on the App Store

Audiobus is the app that makes the rest of your setup better.

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.