Welcome to the Blackout Audio Techno Forums :: Underground Network.
Results 1 to 19 of 19

Hybrid View

  1. #1
    Administrator
    Join Date
    Oct 2006
    Location
    Leeds
    Posts
    8,468

    Default

    bloody hell this looks right up my street. d/l'ed and installing!

  2. #2
    Ultimate Freak
    Join Date
    Aug 2006
    Location
    on the edge
    Posts
    1,988

    Default

    yeah chuck is quality, even better (and much more matured ) is Supercollider. SC is a really amazing language, based around the principle that the language and the synths can run on entirely separate computers/locations/whatever.

    chuck has a much more forgiving syntax if youre just learning, but you really should check out SC if you get into it dude.

    Im just in the middle of a 3 year course with this sort of stuff basically at the centre of it -- i must say that since i got into it ive used traditional production software less and less - it just seems limiting - this is a niche area admitedly but it suits me just fine
    Myspace here

  3. #3
    Ultimate Freak
    Join Date
    Aug 2006
    Location
    on the edge
    Posts
    1,988

    Default

    check this out - cylob isnt my favourite artist music wise but is one of the most inspiring ive come across in respect of how he makes music

    http://durftal.com/cms/cylobmusicsystem.html
    Myspace here

  4. #4
    Administrator
    Join Date
    Oct 2006
    Location
    Leeds
    Posts
    8,468

    Default

    Quote Originally Posted by theledge View Post
    check this out - cylob isnt my favourite artist music wise but is one of the most inspiring ive come across in respect of how he makes music

    http://durftal.com/cms/cylobmusicsystem.html
    cylob is a good mate of mine from the past actually. i wondered what he was up to now.. yeah he's totally on it. love his music...

    god this chuck shit is giving me a headache now hahahah!!..

    ok got a few things to do in the next few weeks but gonna get my head round this for sure. keep on chuckin!

  5. #5
    BOA Lifetime Member
    Join Date
    May 2003
    Location
    In the sky eating clouds
    Posts
    4,428

    Default

    Quote Originally Posted by MARK EG View Post

    god this chuck shit is giving me a headache now hahahah!!..
    yeah it can be tough. Im going to stick this one out though, its worth it.

    have this from another forum ;) and play around with the 5 & 4 values.

    SndBuf s=>dac;
    "special:ahh"=>s.read;
    for(;;)
    Math.tan((5::ms=>now)/4::ms)=>s.rate;
    "The Taoiseach's plans are a quick fix, not a long term solution" - DJ Sunil Sharpe

  6. #6
    Ultimate Freak
    Join Date
    Aug 2006
    Location
    on the edge
    Posts
    1,988

    Default

    kewl, the one which turned me right on to chuck was this one. the best thing about chuck is the control it gives you over time and events and this hits the nail

    Code:
          // impulse to filter to dac
          Impulse i => BiQuad f => dac;
          // set the filter's pole radius
          .99 => f.prad;
          // set equal gain zero's
          1 => f.eqzs;
          // initialize float variable
          0.0 => float v;
    
          // infinite time-loop
          while( true )
          {
              // set the current sample/impulse
              1.0 => i.next;
              // sweep the filter resonant frequency
              Std.fabs(Math.sin(v)) * 4000.0 => f.pfreq;
              // increment v
              v + .1 => v;
              // advance time
              100::ms => now;
          }
    the complete code and background is about half way down this page, give it a try although you may well have already seen it
    http://chuck.cs.princeton.edu/doc/learn/tutorial.html

    try making that in logic
    Myspace here

  7. #7
    BOA Lifetime Member
    Join Date
    May 2003
    Location
    In the sky eating clouds
    Posts
    4,428

    Default

    Quote Originally Posted by theledge View Post
    the complete code and background is about half way down this page, give it a try although you may well have already seen it
    http://chuck.cs.princeton.edu/doc/learn/tutorial.html

    try making that in logic


    nice!
    "The Taoiseach's plans are a quick fix, not a long term solution" - DJ Sunil Sharpe

  8. #8
    BOA Lifetime Member
    Join Date
    May 2003
    Location
    In the sky eating clouds
    Posts
    4,428

    Default

    Quote Originally Posted by MARK EG View Post
    bloody hell this looks right up my street. d/l'ed and installing!
    Download the MiniAudicle mark makes it easier to add scripts on the fly.. rather than just ****ing in notepad & dos.

    Check out some of the stk examples for an example of how intricate you can get some instruments to sound. try stif-karp.ck & mandolin.ck

    My next task is to try and get chuck hooked up through the liveapi telnet thingy and into abelton. SC is mac only I think. :(
    "The Taoiseach's plans are a quick fix, not a long term solution" - DJ Sunil Sharpe

  9. #9
    Ultimate Freak
    Join Date
    Aug 2006
    Location
    on the edge
    Posts
    1,988

    Default

    Quote Originally Posted by massplanck View Post
    SC is mac only I think. :(
    sorry dude i forgot that

    there is a version for windows called Psycollider, i used it for a few months before the happy day i bought a mac

    you can download it here http://sourceforge.net/project/showf...kage_id=133499

    it is harder to do user interfaces than the mac version but basically the rest of the program is there, and it works pretty nicely. let me know how you get on
    Myspace here

  10. #10
    BOA Lifetime Member
    Join Date
    May 2003
    Location
    In the sky eating clouds
    Posts
    4,428

    Default

    Quote Originally Posted by theledge View Post
    sorry dude i forgot that

    there is a version for windows called Psycollider, i used it for a few months before the happy day i bought a mac

    you can download it here http://sourceforge.net/project/showf...kage_id=133499

    it is harder to do user interfaces than the mac version but basically the rest of the program is there, and it works pretty nicely. let me know how you get on
    Thanks, wish i had known that before.

    Im gonna stick with chuck until i know it inside out first, and then ill give it a bash. :)
    "The Taoiseach's plans are a quick fix, not a long term solution" - DJ Sunil Sharpe

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Back to top