Its here! a step-by-step manual that takes you through writing and adding SuperCollider synths to Sonic Pi.
I would love to get reviews from both developers with deep knowledge of Sonic Pi (to fix my technical errors) and people who have never written a SuperCollider synth before (to check that it works as a step-by-step manual)
Also if you fancy you could add your synths to the manual for other people to use - as long as you write comments in them that conform to the markdown that the Literate Code Reader script compiles they can be added direct as .scd pages
This feature is very exciting. Is there a list of available superollider synths that work with sonic pi?
Learning supercollider is a long way down the road for me, but I’d love to play with synth definitions from those smarter than me.
Hi @phillipsglow
I have a copy of the manual, and although I have some experience with Sonic Pi and Supercollider, I’m not a developer and have never added my own synths to Sonic Pi, so I’ll put myself in the Beginner category. Looking forward to tinkering.
I am a Linux user. Linux Mint 22 ships with pipewire and I do not get any soudn with supercollider and sonic-pi as well.
I only get sound if I install pipewire-jack
$ sudo apt install pipewire.jack
and use it in supercollider before starting the server:
Server.program = “pw-jack scsynth”;
s.boot;
{ SinOsc.ar() }.play;
{ SinOsc.ar( mul: 1 ) }.play;
The server needs to be startet (or started again) after calling pipwire-jack!