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 StoreLoopy Pro is your all-in-one musical toolkit. Try it for free today.
midi mapping transport with CC's?
Hi All
I'm trying to finish the koala sampler midi mapping implementation, and was thinking about how I should allow mapping the transport and other buttons...
I don't have a lot of midi controllers so not sure how people will want this to work. Things like transport buttons, do they often get mapped to CC's or do they get mapped to notes? If so, do you know if the expected behaviour is "if the value is bigger than 64 then turn it on, and off otherwise?"
I think it's all going to be midi learn based, so you press a control, then waggle a knob or press a pad and it gets assigned.
all the best
marek
Comments
I'd suppose you need both because when pressing buttons, some controllers send CC while others send notes. They are usually momentary and you should be on the safe side if while MIDI learn is active, you interpret the first respective received CC message value as the highest one and anything below will be "off".
Momentary means that after releasing the button, you either get a Note-off message (which can also be a Note-on with velocity=0 or another CC message with the same CC number but a lower value than the one sent when hitting the button.
Another MIDI-related transport control are MIDI Status messages. These make sense if one day you support MIDI clock: The clock messages advance the transport timer in micro steps (much like the timer in Ableton LINK) while the status messages tell the receiver what to do with them (Start, Stop, Continue, Set song position)
PM me if you want to discuss more MIDI controller questions.