This is very helpful. In my case, I had to right-click on the menu bar of the macro window and set MIDI OUT 1 device to my nano Kontrol 2 for the lights to work.
@nielslangerak74343 жыл бұрын
Thanks for your comment. This helped me a lot...
@elfantasmadelaoperaradio89012 жыл бұрын
@@nielslangerak7434 Thank you very much man, you have saved me, I was going crazy with this topic, thank you very much
@kylekowalczyk3437 Жыл бұрын
Yes this had to have been overlooked in the video! Thank you for sharing this!
@MichaelFrankNZ Жыл бұрын
Thanks for the video! I couldn't get this to work as coded, but I could get it working by setting the buttons to "Momentary" in the Korg Kontrol, and then mapping directly through VoiceMeeter with FF mode enabled.
@crypticSlave3 жыл бұрын
It's worth noting that as of Voicemeeter Potato 3.0.1.8, this workaround is no longer needed, as Voicemeeter now has the ability to use Double Feedback through MIDI Mapping controls in order to activate lights and motorized faders. Is there any chance that you will cover this new feature update?
@zelintan17543 жыл бұрын
any idea on how i can set this up?
@jonahbron4594 Жыл бұрын
@@zelintan1754 In the M.I.D.I Mapping you can select the F, click it until you have "FF" this will enable to lights to run without code. As in the Mute, Solo... etc.
@turtlefarm8742 Жыл бұрын
@@jonahbron4594 i think the macros are better to keep the lights on if you are muted if not it will Un sync it seems
@juniorsilvabroadcast Жыл бұрын
It works perfect with voicemeeter new midi update
@elfantasmadelaoperaradio89012 жыл бұрын
Thank you very much mate, you have helped me a lot with this tutorial, you already have my like, a hug
@phatadam1233 жыл бұрын
This is great - does anyone else, have to doube tap the button once in and a while? Strip(0).mute=1; System.SendMidi("out1", "ctrl-change", 1, 21, 127); for those of you who like copy/paste
@theirongaming41503 жыл бұрын
The out 1 means the specific midi device so that mean if you connect 2 midi device (voicemeeter only support up to 2) it will recognize out 2 if u choose another midi device and the 3 numbers (XX,XX,XX) when you write the control change the first number means the channel which different device set different channel for their LED, I think novation set their launchpad channel 7 for user1 , the second is the different button you want to set and the third number is the colour so novation launchpad have 127 different color that really depends on your midi device tho
@kimkelvin3 жыл бұрын
any ideal for the akai midi mix? i had it configured for the channels 1-3 when i tried to configure the mute for channel 4 in my case its note 12 on the learn, but when i save it it lights a different button on my midimix in my case its the 6th channel's mute, any idea what's going on? cheers!
@merlijnbeekman96463 жыл бұрын
A small question. Do you have an idea how to use the Nanokontrol 2 with Spotify to use the play/pause button to play and pause a song?
@stijn0matic2 жыл бұрын
I use midi-mixer for this
@Gitago3 жыл бұрын
unfortunately i cannot get this to work at all on my nanokontrol2...
@Nor1MAL3 жыл бұрын
The code is the following : Strip0 Solo Midi Inital State: System.SendMidi("out1", "ctrl-change", 1, 32, 0); Button ON: Strip(0).solo=1; System.SendMidi("out1", "ctrl-change", 1, 32, 127); Button OFF: Strip(0).solo=0; System.SendMidi("out1", "ctrl-change", 1, 32, 0); Strip0 Mute Midi Inital State: System.SendMidi("out1", "ctrl-change", 1, 48, 0); Button ON: Strip(0).mute=1; System.SendMidi("out1", "ctrl-change", 1, 48, 127); Button OFF: Strip(0).mute=0; System.SendMidi("out1", "ctrl-change", 1, 48, 0); Then just increase Strip(0) to Strip(1) etc; and 32 to 33 etc, then 48 to 49 etc. You should be able to see the id if you learn the midi button anyhow. Remember to put 2 Position State instead of Push Button, except on cough/tempmute button, which I don't use, at least not at this time. For Rec button, I used this : Record Midi Inital State: recorder.stop=1 System.SendMidi("out1", "ctrl-change", 1, 45, 0); Button ON: recorder.record=1 System.SendMidi("out1", "ctrl-change", 1, 45, 127); Button OFF: recorder.stop=1 System.SendMidi("out1", "ctrl-change", 1, 45, 0); Would been beneficial to use the pause recording function in voicemeeter, but I haven't figured out how to make the record button blink, so I just made it stop the recording instead. There is currently no loop/while and/or repeat/recurring command function in voicemeeter, though it has a wait function ( Wait(2000) is waiting 2000ms or 2 seconds). If you want to have the pause recording, replace recorder.stop=1 to recorder.record=0 instead :) Hope this helps.