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.
Comments
It works on BM3. Just the presets are not able but as I copy-past the code from my library, this is not a big issue
Thanks!
Here’s an admittedly only lightly tested script I wrote to overcome a long standing frustration with my NanoKEY Studio. The only way to change midi channels from the keyboard is by pre-setting scenes. That’s a pain in the butt, is limited to 8 Chanel’s, and restricts what else you can accomplish with the scenes.
By playing one of highest 16 midi notes you can change the channel from 1 (A7) to 16 (C8). Those notes are blocked from sounding. Everything else is passed through, but with the channel altered. So, to change from Ch. 1 to Ch. 2, you would hit the Octave + button until it’s red and flashing, then play A#, then switch back down to the octave you were on.
I’m posting here in case anyone else might be able to make use of it. It can work on any keyboard, not just the NanoKEY Studio.
It works very well!! Thanks for sharing this...and once again, this app is so cool...
Yeh. It’s pretty useful.
A few lines of code just turned my old Electribe ES-1 into a 100+ control midi controller.
Good stuff!
Is this all yours or did Nic help out?
I like the less than/ greater than on the MT.
Just me. But of course with help from examples posted by Nic and others.
Actually, the MT should be M0. Basically looking for any note on / note off messages. I’ve now edited the original post. I’m sure I’ll notice other things that could be done better when I look back at it when I’m not so sleepy.
I’m wondering if it might even be possible to use streambyter to actually send something like sysex files to connected controllers in order to change the configuration on the device itself. For those ones that don’t have iOS editors, Korg, KMI etc. Maybe one could find out with Midi monitor what exactly is being sent when using the desktop editor and send that with streambyter on iOS? Would that be possible at all?
I’ve been in discussions with the devs of StreamByter, Midi Designer and AUM about this very subject the past few weeks.
I’ve been creating a Circuit editor in MD, and sending a 9 byte sysex message to the Circuit that then responds with a 350 byte sysex patch message.
The devs have been great in troubleshooting this. Still testing, but the first issue we noticed is that large sysex messages(over 256 bytes) gets split and sent in separate packages. Jonatan (AUM) and Dan (Midi Designer) have already been working on their latest betas to overcome this. Nic (StreamByter) is being super helpful too.
I’m hoping to do more testing over the weekend and will report back here in a few days as to how that’s worked out for me.
Yes, in theory this should work however I’ve not got it working.
Yet.
May the Boffins be with you my son.
Indeed! Would be fantastic if we could get this working!
Ahh this explains why I could never get a parameter dump from my ES1 when I tried forever with MidiDesigner. Good to know. Good luck.
Maybe reach out to Dan @ Midi Designer to see if he needs Beta Testers? I'm sure with sysex being a part of the new Beta he'd appreciate another set of hands, especially with the scenario you tried previously?
I would like to reconfigure my blueboard so that when I press the program change 0, I can swith to any preset I want. I know that something like :
SND C0 5 (for example)
It will let me change the preset. If I press the ‘A’ on my blueboard, it won’t be the preset 0 but the 5 that will load. Great. But there is a problem. It theorically works if I am monitoring the output in ApeMatrix but the preset is not correctly changing in my synth as the blueboard seems to bypass the StreamByter app. What can I do ?
I’m pretty much an AUM user exclusively, but have you made sure that all the connections are in place in ApeMatrix Midi grid?
BLUEBOARD > SB AUv3
SB AUv3 > SYNTH
Is it using Midi channel 1?
I don’t own the Blueboard, but I imagine something like below may work? Rules may need expanding upon for up/down presses, but worth a go.
C0 00 = XX 05
Thanks. Well, it doesn’t change anything. In fact I can see that a program change is sent to my synth (kauldron here) even if I don’t route anything to it. That’s why I wonder if the routing in apeMatrix is not simply bypassed. I don’t know if it can manage program change routing.
Is it one specific CC or all CC messages?
Is it to be duplicated to specific midi channels or all?
B means Controller Change (CC)
XX on the right of equals sign is a wildcard' that basically means copy incoming.
X on the left of equals means 'ANY'. Any channel in above examples.
XX on the left of equals sign means 'ANY'. Any CC number in above examples.
Ok cool.
Let me know if the above is enough info or if you wanna list the CC and output channels we can get the code spot on for you.
Any way this could be used to trigger the AUM keyboard through a Bluetooth QWERTY keyboard? I’ve already got sidecar- just curious.
Hi All, just got the streambyter but I’m completely flabbergasted at the learning curve!
Before I read this thread or learn the app inside out can someone please tell me the code to remap:
CC7 (all channels) to CC74 (channel 16) with a range limited to 0-64?
I’m trying to remap an expression pedal sending CC7 to Novation Circuit’s global filter.
Cheers
Oh dear, I just realised I’ve already asked this question back in July. Off to try it! Cheers @SpookyZoo !
Not working
Which code did you use?
Are the Channels in your original question (2 & 16) still the ones being used?
Which app is hosting StreamByter?
What is the set up?
Audiobus is handlig the midi. In Audiobus midi I’ve put Scarlett in the input, streambyter AU in the fx slot and circuit in the out. The input midi channel is now 1, but I’ve just tried it with ch2 as it used to be and I’m still not getting anywhere.
I’ve tried both
B1 07 = BF 4A
And
B1 07 = BF 4A +B
You have a midi monitor of some sort to read what's coming out the other side of SB? I use MidiFire to refine SB code for this purpose--the event monitors are super handy.
No man, I’ve just splashed out on streambyter so not ready to get another app just for that. I’m actually quite amazed that an app like streambyter doesn’t have an event monitor!
I’m already quite vexed because, while we’re blessed to have this kind of utility one needs to learn a language how to use it. I’d rather learn an actual geographical language!
Also hardly any step by step vids....
@supadom
I mainly use StreamByter in AUM. Unfortunately AB3 crackles with my larger setup.
I'll see if I can test this in AB3 this evening though.
Just out of interest try
BX 07 = BX 4A
this will convert CC7 on all channels, but we can narrow down after if this works.
Please also explain a little more about the use of range 0-64.