home.social

#korgnts1 — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #korgnts1, aggregated by home.social.

fetched live
  1. [Accurate Beats] live streaming the assembly of the new Korg NTS-1 mk II
    youtube.com/live/k-0SKDOSmnI

  2. 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

  3. 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