You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Arseniusz 4b2857f45e
add examples for usage synths
5 months ago
..
algs initial commit 5 months ago
analyzers initial commit 5 months ago
examples initial commit 5 months ago
samplers initial commit 5 months ago
synths initial commit 5 months ago
BmDspAlgs.sc Add automatic Quarks installation and Quark initialization 5 months ago
README.org add examples for usage synths 5 months ago

README.org

Bjornmossa DSP algorythms library

This repo contains SC code for synthesis, processing and analysys algorythms.

Usage

(
var sin_dict = BmDspAlgs.getDict("synths/distorted_sin.scd");
sin_dict[\postAmp] = true;
sin_dict.makeSourceSynthDef.add();

~synth = ();
~synth[\name] = \synth;

Ndef(~synth[\name]).clear;
Ndef(~synth[\name]).ar(2);
Ndef(~synth[\name]).prime(sin_dict[\name]);

Ndef(~synth[\name]).play;
)