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

Hybrid View

  1. #1
    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

  2. #2
    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!

  3. #3
    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

  4. #4
    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

  5. #5
    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

 

 

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