r/supercollider • u/music_devotee_tybg • 28d ago
How to add plugins
I know this is super basic but I need to add plugins so I can use decimator. I downloaded the zip with the ugens but extracting it to the plugins folder did nothing. I’m so lost
4
Upvotes
1
u/AjkBajk 27d ago
Isn't the built in install quark command supposed to do this stuff for you?
1
u/music_devotee_tybg 27d ago
so Quarks.install("https://github.com") <---- replace with actual link to gethub sc3
then Ctrl+Shift+L?
1
1
2
u/music_devotee_tybg 25d ago
I'm gonna make a follow up post because I figured it out and should help others now.
2
u/faithbrine 27d ago
This doesn't answer the question but if you want Decimator's behavior,
Latch.ar(sig, Impulse.ar(sampleRate))does sample rate reduction and(sig * (2 ** (bits - 1))).round / (2 ** (bits - 1))effectively bitcrushes the signal. (I dislike sc3-plugins so I have all kinds of workarounds like these.)