How to send MIDI data to Lemur on song load

Hi all,
I’m using Lemur as a controller for Cantabile 3. Everything works fine (mostly MIDI from Lemur to Cantabile) but I’d like to know if it is possible to send from Cantabile gain values (or other values, plugins’ parameters values, etc.) as MIDI, on song load.
In this way I could have the faders and knobs in my Lemur’s ‘mixer’ section linked with the values saved in Cantabile when I load a song.

I tried with a binding that has a rack’s gain as source and the Lemur as target, but I’d need to have the binding active only once, when I load a song.

I suspect this is possible and very easy, but I cannot find a solution.
Thanks!

I guess the obvious thing is to bind the input from Lemur to a rack gain, and bind the rack gain out to Lemur, so changing one will always change the other. And when you load a song, the rack gain stored in the song will be sent out to Lemur at song load time, to initialise Lemur. The only potential problem is that when you move a Lemur fader, Cantabile will echo the fader value back to Lemur, which I guess could cause problems, especially if you’re moving faders quickly, and in particular, if Lemur then echoes this back into Cantabile…:exploding_head:

So ideally what you need is to disable the MIDI route going out to Lemur for a particular fader, when the last thing that modified the fader was Lemur itself. I haven’t tried this, but you might be able to achieve it as follows:

  1. Set up an embedded rack, which internally just routes its Rack MIDI In to Rack MIDI out. Route the rack’s MIDI output to Lemur.
  2. Set up your incoming binding from Lemur to your chosen rack gain fader (I think you could use the embedded rack’s fader for this if you wanted).
  3. Add another binding that’s triggered when Lemur sends controller data for your fader, and have the target to send an unused controller message to the embedded rack MIDI in with a specific value (e.g. CC 110, value 127). Just make sure it’s a controller message Lemur doesn’t use itself.
  4. Add a binding that’s triggered when the fader is tweaked in Cantabile, and have the target to send the same unused controller message to the embedded rack, with a different specific value (e.g. CC 110, value 0)
  5. Right-click on the route inside the embedded rack, go to MIDI Route Settings, and in the “Condition” area, set up a rule that allows the route to work only if that above controller is not equal to the value set up in step 3 (i.e. 127 in my example). In other words, disable the route if the last controller message modifying the fader was from Lemur.
  6. Finally, set up your outgoing binding for your rack gain fader, sending it to the embedded rack. Make sure this binding is after the above bindings.

What should happen is that the embedded rack should act as a switch, breaking the route out to Lemur when Lemur is controlling Cantabile, and re-enabling the route when the Cantabile fader is moved (or initialised at song load) to allow it to notify Lemur. Well, that’s the theory!

Like I say, I haven’t tried this, and it’s rather fiddly, but it might just work. If it does, it might be worth encapsulating the fiddly logic into a re-usable rack, so you don’t have to reproduce the fiddly steps each time, and for every fader.

Neil

Thank you!
Next week I’ll try your suggestion and report the results.

This actually works quite well, there’s just a little glitch because of the echo back to Lemur, but nothing dramatic. Lemur doesn’t send back received messages, it seems. However, I wouldn’t feel comfortable on stage with this technique and prefer a safer solution.
Thanks for your help!

Its almost like there needs to be away to suppress certain outgoing bindings while responding to incoming bindings, but they probably need to be grouped/connected in someway so that other bindings do continue to fire. Hrm…

Or a special new kind of 2-way binding for synchronising Cantabile controls with an external controller such as control surfaces etc…

1 Like

A 2-way system would be great!
I’ll test @Neil_Durant suggestion soon. The only problem is that something like that works for a small amount of bindings (which is fine in my situation as I need it for only few parameters), but if I had to duplicate all my bindings, that would be quite time consuming…
The ideal would be to have Lemur in synch with Cantabile every time I load a song, or a state, change the value of a binding etc.

1 Like