Music Software Bundles from Pluginboutique.com

Announcement

Collapse
No announcement yet.

my first track using SuperCollider

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • my first track using SuperCollider

    and here it is :thumbsup:

    my first track played live in supercollider

    http://soundcloud.com/ahornberg/supercollider-experiment-1


    I used this code from the supercollider-tutorial and changed some parameters over time while recording the output:

    Code:
    (
    {
        var n = 12;
        Mix.arFill(
            n,
            {
                SinOsc.ar(
                    [53.0.rrand(300), 67.0.rrand(2001)],
                    0,
                    n.reciprocal * 0.41
                )
            }
        )
        *
        EnvGen.kr(Env.perc(11, 6), doneAction: 2)
    }.scope
    )
    so the code reflects the last tone in the recording. everything else before is lost and cannot be restored. this is an interesting aspect that makes working in supercollider so fresh for me. it is not a daw where you can record every fader movement ...
    ahornberg.bandcamp.com
    soundcloud.com/ahornberg
Working...
X