• Stars
    star
    471
  • Rank 92,614 (Top 2 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 12 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The JavaScript client library for SuperCollider

supercolliderjs

NPM downloads MIT License

JavaScript library for the SuperCollider music language and synthesis server

supercollider.js is a full-featured, batteries included client library for the SuperCollider audio synthesis server and the SuperCollider language interpreter.

It can be used for algorithmic composition, live coding, playing sounds with MIDI, audio processing, sound file rendering, data sonification and more.

It is written in TypeScript and compiled for release as ES2018 (Node >= 10) JavaScript and can be used in Node applications for either JavaScript or TypeScript.

SuperCollider

SuperCollider is a platform for audio synthesis and algorithmic composition, used by musicians, artists, and researchers working with sound. It is free and open source software available for Windows, Mac OS X, and Linux. supercollider.github.io

It consists of two parts:

  • scsynth: A real-time audio synthesis Server that communicates over TCP/IP using the OSC (Open Sound Control) protocol.

    • High quality accurate and efficient audio engine
    • Fully adjustable sample rate (192k+) and block size
    • 32-bit float signal chain
    • Sampling buffers use 64-bit float
    • Fast and fluid control rate modulation
    • 250 Unit generators in SuperCollider
    • Hundreds more community contributed UGens
    • Simple ANSI C plugin API
    • Supports any number of input and output channels, ideal for large multichannel setups
    • macOS, linux, windows
  • sclang: An interpreter and runtime for the SuperCollider programming language. It is similar to Smalltalk or Ruby with syntax similar to C or Javascript.

Install

  1. Install SuperCollider: https://supercollider.github.io/

  2. Install supercolliderjs:

npm install supercolliderjs

Examples

There are several interfaces, ranging from low-level (tedious, error-prone) control to higher level constructs.

// @supercollider/server-plus interface
const sc = require("supercolliderjs");

sc.server.boot().then(async server => {
  // Compile a SynthDef from inline SuperCollider language code and send it to the server
  const def = await server.synthDef(
    "formant",
    `{ |out=0, fundfreq=440, formantfreq=440, bwfreq=100, timeScale=1, pan=0|
        var saw, envd, panned;

        saw = Formant.ar(fundfreq, formantfreq, bwfreq);

        envd = saw * EnvGen.kr(Env.sine(0.1, 0.2), timeScale: timeScale, doneAction: 2);
        panned = Pan2.ar(envd * AmpCompA.kr(fundfreq, 0.2, 0.7), pan);

        OffsetOut.ar(out, panned);
      }`,
  );

  // Create group at the root
  const group = server.group();

  const freqSpec = {
    minval: 100,
    maxval: 8000,
    warp: "exp",
  };

  // Map 0..1 to an exponential frequency range from 100..8000
  const randFreq = () => sc.map.mapWithSpec(Math.random(), freqSpec);

  // function to spawn one synth event
  const spawn = dur => {
    server.synth(
      def,
      {
        fundfreq: randFreq(),
        formantfreq: randFreq(),
        bwfreq: randFreq(),
        pan: sc.map.linToLin(0, 1, -1, 1, Math.random()),
        timeScale: dur,
        // spawn each synth into the same group
      },
      group,
    );

    const next = Math.random() * 0.25;

    // Schedule this function again:
    setTimeout(() => spawn(next), next * 1000);
  };

  // spawn the first event
  spawn(Math.random());
}, console.error);

source

SynthDef and Synth

A SuperCollider SynthDef defines a graph of Unit generators. It wires together inputs and outputs, oscillators and filters. Once it is compiled and sent to the server, then you can create Synths that play that sound.

Currently supercollider.js uses sclang to compile synth defs. Full support for writing and compiling SynthDefs from JavaScript is planned.

const sc = require("supercolliderjs");

sc.server.boot().then(async server => {
  // Compile and send to server from inline SuperCollider code
  const pulse = await server.synthDef(
    "pulse",
    `{ arg out = 0, freq=200;
    Out.ar(out, Pulse.ar(200, Line.kr(0.01,0.99,8), 0.2))
  }`,
  );

  await server.synth(pulse, { freq: 300 });

  // Load and compile from a SuperCollider language file
  const klang = await server.loadSynthDef("klang", "./klang.scd");

  await server.synth(klang);

  // Compile or load many at once
  const defs = await server.synthDefs({
    clipNoise: {
      source: `{ arg out = 0;
        var clip = LFClipNoise.ar(MouseX.kr(200, 10000, 1), 0.125);
        Out.ar(out, clip);
      }`,
    },
    lpf: {
      source: `{ arg in = 0, out = 0;
        var input = In.ar(in);
        var lpf = RLPF.ar(input, MouseY.kr(1e2, 2e4, 1), 0.2, 0.2);
        ReplaceOut.ar(out, lpf);
      }`,
    },
  });

  // Some people pre-compile synth defs to a binary format.
  // Load a pre-compiled synth def from a binary file.
  const defLoadMsg = sc.server.msg.defLoad("./formant.scsyndef");
  // This object has two properties:
  // .call - the OSCMessage to send
  // .response - the expected OSCMessage that the server will reply with
  // Call and wait for the response:
  await server.callAndResponse(defLoadMsg);

  // Load an entire directory of pre-compiled synth defs
  // await server.callAndResponse(sc.server.msg.defLoadDir("./synthdefs/"));
});

source

const sc = require("supercolliderjs");

sc.server.boot().then(server => {
  const def = server.synthDef(
    "bubbles",
    `
      SynthDef("bubbles", { arg out=0, wobble=0.4, innerWobble=8, releaseTime=4;
        var f, zout;
        f = LFSaw.kr(wobble, 0, 24, LFSaw.kr([innerWobble, innerWobble / 1.106], 0, 3, 80)).midicps;
        zout = CombN.ar(SinOsc.ar(f, 0, 0.04), 0.2, 0.2, 4);  // echoing sine wave
        zout = zout * EnvGen.kr(Env.linen(releaseTime: releaseTime), doneAction: 2);
        Out.ar(out, zout);
      });
    `,
  );

  setInterval(() => {
    server.synth(def, {
      wobble: Math.random() * 10,
      innerWobble: Math.random() * 16,
      releaseTime: Math.random() * 4 + 2,
    });
  }, 4000);
});

source

Server Plus Server

lang

  • Spawns the language interpreter, sclang
  • Call SuperCollider code from JavaScript
const sc = require("supercolliderjs");

sc.lang.boot().then(async function(lang) {
  // This function is declared as `async`
  // so for any function calls that return a Promise we can `await` the result.

  // This is an `async` function, so we can `await` the results of Promises.
  const pyr8 = await lang.interpret("(1..8).pyramid");
  console.log(pyr8);

  const threePromises = [16, 24, 32].map(n => {
    return lang.interpret(`(1..${n}).pyramid`);
  });

  // `interpret` many at the same time and wait until all are fulfilled.
  // Note that `lang` is single threaded,
  // so the requests will still be processed by the interpreter one at a time.
  const pyrs = await Promise.all(threePromises);
  console.log(pyrs);

  // Get a list of all UGen subclasses
  const allUgens = await lang.interpret("UGen.allSubclasses");

  // Post each one to STDOUT
  allUgens.forEach(ugenClass => console.log(ugenClass));

  await lang.quit();
});

source

Documentation

Documentation

Compatibility

Works on Node 10+

Source code is written in TypeScript and is usable in JavaScript es2018 or TypeScript projects.

Contribute

License

MIT license

More Repositories

1

django-ajax-selects

jQuery UI-powered auto-complete fields for ForeignKey, ManyToMany and text fields
Python
821
star
2

atom-supercollider

SuperCollider development environment for Atom.io
CoffeeScript
84
star
3

supercolliderjs-examples

Example applications and code for supercollider.js
JavaScript
25
star
4

crucial-library

SuperCollider music programming library.
SuperCollider
18
star
5

API

simple Application Programming Interface framework for inter-application communication with SuperCollider
SuperCollider
17
star
6

dryadic

Dryadic is a micro-framework for managing trees of components across disparate rendering contexts.
TypeScript
11
star
7

supercolliderjs-browser

Tools for communicating between remote javascript clients (primarily web browsers) and supercollider.js
JavaScript
10
star
8

gulp-blog-scaffold

Template for gulp driven static site markdown+jade based blog
JavaScript
9
star
9

Mx

A scriptable mixer, data patching matrix and timeline for SuperCollider
SuperCollider
9
star
10

splines

Spline classes for SuperCollider
SuperCollider
8
star
11

supercollider-js-guide

Introduction to supercollider.js - the JavaScript client for SuperCollider
6
star
12

crucialviews

views, gadgets and widgets for supercollider
SuperCollider
4
star
13

ServerTools

Server and class introspection tools for SuperCollider
SuperCollider
3
star
14

cxaudio

Instr library and Pseudo-ugen classes
SuperCollider
3
star
15

generator-minimal-typescript

Yeoman generator to scaffold a minimal Typescript module
JavaScript
3
star
16

ZArchive

SuperCollider file archive : saves and reloads large datasets in a safe binary format
SuperCollider
3
star
17

CrucialTests

unit tests for various crucial related supercollider libraries
SuperCollider
2
star
18

repot-trilliontrees

This repository is a quick sketch using some new tech in order to try some things out and discover what works and what might be annoying and how to solve it. It isn't meant to be clean, it is meant to find and solve problems quickly. It's an experiment.
TypeScript
2
star
19

cxpatterns

Instr that create Patterns [supercollider]
SuperCollider
1
star
20

mxdevices

SuperCollider gadgets and musical devices
1
star
21

generator-custom-bootstrap

[0.0.0] Yeoman generator to install compass bootstrap with google webfonts, compass-recipes and live-reload
JavaScript
1
star
22

5easy

JavaScript
1
star