GithubHelp home page GithubHelp logo

scazan / lividds1 Goto Github PK

View Code? Open in Web Editor NEW
0.0 3.0 0.0 11 KB

An Ndef-oriented controller class for SuperCollider 3.7 using the Livid DS1 with a built-in EQ, channel mutes, master fader, GUI, and matrix-mixer mode.

Home Page: http://scottcazan.com

SuperCollider 97.50% Shell 2.50%

lividds1's Introduction

LividDS1

An Ndef-oriented controller class for SuperCollider 3.7 using the Livid DS1 with a built-in EQ, channel mutes, master fader, GUI, and matrix-mixer mode.

Using the class:

Make some Ndefs:

(
	Ndef(\noiseSynth, {
		WhiteNoise.ar();
	});

	Ndef(\sinSynth, {
		SinOsc.ar(220);
	});

	Ndef(\soundIn0, {
		SoundIn.ar(0)!2; // if you want to directly monitor a sound input
	});

	// Any other Ndef synths you might want to use...
)

Some Ndefs can use the matrix inputs/sends:

(
	// All pre-fader sends from the channels can be accessed via a pre-defined Ndef(\busN). For example:

	Ndef(\reverb, {
		var input = Ndef(\bus0).ar; // this means any channel that has its first knob turned up will be fed into this reverb.

		GVerb.ar(input);
	});

	Ndef(\trackingSynth, {
		var freq, hasFreq;
		var input = Ndef(\bus1).ar; // this means any channel that has its second knob turned up will be fed into this pitch tracker.

		# freq, hasFreq = Pitch.kr(input);

		SinOsc.ar(freq)!2;
	});
)

Instatiate the controller.

m = LiviDS1.new();

Or instantiate the controller using the names of the Ndefs that you want to use.

(
m = LividDS1.new([
	\reverb,
	\trackingSynth,
	\noiseSynth,
	\sinSynth,
	\soundIn0
]);
)

If you want to change the instruments mapped into it you can use the update function.

m.update([
	\reverb,
	\someOtherSynth,
	\noiseSynth,
	\sinSynth,
	\maybeAnotherOne
]);

Outputs:

All synth outputs are summed on channels [0,1]. Each individual synth output is also sent out to an individual SC output channel.

The first synth is output individually on [2,3].
The second synth is output individually on [4,5].
The third synth is output individually on [6,7].
And so on...

Buttons:

The lower button in each channel mutes the channel (indicated by the button turning red).

The upper button toggles EQ mode which turns the bottom 3 faders of the channel into a high, mid, low EQ (much like you'd find on something like the Mackie 1202). The top two knobs still function as before (EQ mode is indicated by the button turning white).

The right-hand buttons and knobs are not currently in use in my setup.

lividds1's People

Contributors

scazan avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.