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.
15 lines
419 B
15 lines
419 B
* Bjornmossa DSP algorythms library
|
|
This repo contains SC code for synthesis, processing and analysys algorythms.
|
|
* Installation
|
|
- Put in startup file: "SC_ALGS_PATH".setenv("path to library".standardizePath);
|
|
- install NodeDictionary extention
|
|
|
|
#+BEGIN_SRC sclang
|
|
(
|
|
var s = (("SC_ALGS_PATH".getenv) +/+ "synths/substractive/sin.instr.scd").load;
|
|
var d = NodeDictionary.newFrom(s);
|
|
|
|
d.makeSourceSynthDef();
|
|
)
|
|
#+END_SRC
|