220a-fall-2014

From CCRMA Wiki
Revision as of 10:12, 1 October 2013 by Networth (Talk | contribs)

Jump to: navigation, search

Welcome on the Music 220a wiki!

Music Presentation Sign Up

Please use your full name as appeared on the class list.

  • 09/26 (THU) : 3 volunteers :)
  • 10/01 (TUE) : Chet Gnegy, Madeline Huberth, Holly Jachowski
  • 10/03 (THU) : Elliot Kermit-Canfield, Graham Davis, Clark Pang
  • 10/08 (TUE) : Victoria Grace, Alex Ramsey
  • 10/10 (THU) :
  • 10/15 (TUE) : Nette Worthey
  • 10/17 (THU) :
  • 10/22 (TUE) :
  • 10/24 (THU) :
  • 10/29 (TUE) :
  • 10/31 (THU) :
  • 11/05 (TUE) :

Tutorial Session Sept 26: HW1, simplest Chuck code & UNIX

Quick UNIX tutorial: http://freeengineer.org/learnUNIXin10minutes.html

Download Chuck: http://chuck.cs.princeton.edu/release/

Download MiniAudicle: http://audicle.cs.princeton.edu/mini/

//TriOsc, SqrOsc, etc
SinOsc a => dac; 
//a => dac.right;
//a => dac.left;

440 => a.freq;
0.9 => a.gain;

while(true){
    //<<< Std.rand2f( 100.0, 1000.0 ) >>>;
    Std.rand2f( 100.0, 1000.0 ) => a.freq;
    100::ms => now;
}