What's being said?
"Best new song of 2008"
"Platinum album for sure"
"2 thumbs up"
            
            CraigSong by Craig Easton
           
          
                                               
            
            Information about the song:
Please see the right menu to download the song.
-Song starts with a buzz created with a linen form
-Using a simple oscillator the next series of notes are played using the ENVLPX function
-This is then followed by some scratching.
-At this point Ableton was used to re-start the song and add in a reverb effect that is left on for the remainder of the song.
-After the scratching piano notes are played
-As the piece goes on the piano notes become more of a song
-Then the scratching and piano is combined
-Then the scratching and a kick drum is combined
-Following this is some plucking
-Granular synthesis kicks in near the end of the plucking
-At which point the piano begins again, this time playing a real song
-Followed by the simple oscillator again with the ENVLPX function to end the song
                
Instrument Information
Instrument 107 uses the linen opcode to apply a straight line rise and decay pattern to an input amp signal, which in this instrument is a pluck sound.
instr   107 ;A LINEN PLUCK
              k1	linen	p4, 0, p3, p9 
              a1 	pluck 	k1, p5, p6, p7, p8
              out 	a1,a1
              endin
Instrument 108 again uses the linen opcode to apply a straight line rise and decay pattern to an input amp signal, which in this instrument is a buzz sound. The output then mixes the buzz with a granular synthesis.
instr 	108 ;A LINEN BUZZ AND GRAIN
              a1	grain 	p4,	p5,	p6,	p7,	p8,	p9,	p10,	p11,	p12
              k1	linen	p4, 	0, 	p3, 	p9 
              a2	buzz	k1,	p5,	10,	1
              out 	a1+a2, a1+a2
              endin