Tag: sc3

Vote for SuperCollider!

Vote for SuperCollider!

Which category? The community suggests “Most likely to change the way you do everything”.

 

nescivi.nl » Downloads

nescivi.nl » Downloads

Me likes that. Great to see how other people use sc. Thanx for sharing, Marije! Code LiveCode Live – Greyhound

 

Data Transfer through Sound

Data Transfer through Sound

Today, I stumbled across this article that investigates into using sound as a transfer medium for digital information. Though this is actually a very old and …

 

Kuler and sclang

Kuler and sclang

This patch extracts color values from the kuler api via a themeID and converts them to Color objects. It requires  - the XML quark by Jens Gulden …

 

A Soundfile player in SuperCollider

A Soundfile player in SuperCollider

Awesome simple; Simply awesome. q = (); s.boot;   // get sounds q.soundFiles = SoundFile.collect( "/localvol/sound/share/audiosamples/freesound/birdsong/*.wav" );   // play back in order of their appearance Pseq(q.soundFiles.collect{|file| file.cue((\dur: file.duration))}, 1).play;