🎹 Je suis fier de vous présenter le setup qui me sert en live et avec lequel j'ai enregistré le prochain album "Fusion" ! 🙃

#dawless #elektron #modelsamples #modelcycles #rolands1 #rolandp6 #mb33 #vermona #korgnts1 #korgnts3 #1010music #hologrammicrocosm #goldenmaster #beatstep #empresseffects #synths

[Accurate Beats] live streaming the assembly of the new Korg NTS-1 mk II
https://www.youtube.com/live/k-0SKDOSmnI
#Korg #KorgNTS1 #KorgNTS1mkII #synth
Korg MTS-1 mk II - Let's build it (And not break anything!)

YouTube

Well, that was easy! I wanted to variate the cutoff rate of my NTS-1, and #Supercollider came to the rescue!

```
(
~midiOut = MIDIOut(0);
Routine({
loop({
128.do({ |i|
~midiOut.control(0, ctlNum: 43, val: (i / 4.0) + 32.0);
(81 / 60 / 12).wait;
});
128.do({ |i|
~midiOut.control(0, ctlNum: 43, val: (32.0 + 32.0) - (i / 4.0));
(81 / 60 / 12).wait;
});
});
}).play;
)
```

#midi #KorgNTS1