Difference between revisions of "MultiGrain"

From CCRMA Wiki
Jump to: navigation, search
Line 83: Line 83:
  
 
== Usage ==
 
== Usage ==
Download both chuck files.  In "grain.ck" change the sound file to the specified location.  Then add a shred from "grain_control.ck"  ENJOY!
+
Download both chuck files.  In "grain.ck" change the sound file to the specified location.  Then add a shred from "grain_control.ck"  Midi controller numbers might have to be changed for your midi controller.  Tweak some knobs and ENJOY!
 +
 
 
[http://ccrma.stanford.edu/~baeksan/220a/final_project/grain.ck Granular Chuck code]
 
[http://ccrma.stanford.edu/~baeksan/220a/final_project/grain.ck Granular Chuck code]
  
 
[http://ccrma.stanford.edu/~baeksan/220a/final_project/grain_control.ck Multiple Grain Instances]
 
[http://ccrma.stanford.edu/~baeksan/220a/final_project/grain_control.ck Multiple Grain Instances]

Revision as of 18:28, 10 December 2007

IDEA

Implementation of real time, time granulation synthesis in Chuck, with the ability to be used in live performance. The synthesis parameters (grain length, position, position randomness, pitch, and pitch randomness) can be tweaked in real time.

DESIGN

SndBuf stores a sound file into a buffer, which is then chucked to a linear envelope for the grains. The envelope is used to prevent pops and clicks from starting the sound file from a random position. The envelope used in the sound files below has a rise time that is randomly chosen from 0.45 to 0.5 ms. This can be altered to achieve a more varying asynchronous envelope for each grain. For granular synthesis, grain length is usually from 1 - 100 ms. The grain length, position in the sound file, the randomness of the position, pitch transposition, and randomness of pitch are the parameters that can be controlled in this patch. All the parameters were mapped to a midi controller, allowing for real time control of each parameter simultaneously.

EXAMPLE SOUND CLIPS

Original sound file

Varying randomness of position - Changing the parameter which controls how far from the starting position the patch should play grains. This essentially chops up the sound file into desired grain lengths and orders them randomly one after another. A grain length of 80 ms was used.

Transposing pitch - The pitch of the grains is transposed. The randomness of the pitch of each grain can be controlled as well.

Time stretching - Time stretching of the sound file can be achieved by changing the grain position in the buffer. Granular synthesis allows to time stretch the sound file, without altering the pitch. In this example, the grain length is 80 ms and the position randomness is set to 0. This was done in real time with a knob on a midi controller.

Time stretching with transposition Time stretching another example - These examples show time stretching and pitch transposition of the sound file.

Everything all together with reverb control on top - All the parameters are tweaked simultaneously in real time. The dry wet mix of the reverb is also controllable

CODE

 Machine.add( "grain.ck" );
 Std.rand2f(5,20)::ms=>now;
 Machine.add( "grain.ck" );
 Std.rand2f(5,20)::ms=>now;
 Machine.add( "grain.ck" );
 Std.rand2f(5,20)::ms=>now;
 Machine.add( "grain.ck" );
 Std.rand2f(5,20)::ms=>now;
 Machine.add( "grain.ck" );
 Std.rand2f(5,20)::ms=>now;
 Machine.add( "grain.ck" );
 Std.rand2f(5,20)::ms=>now;
 Machine.add( "grain.ck" );

Adding multiple instances of grains with different phase. This allows for a more dense/cloud like sound, compared to using one grain instance.


while(min.recv(msg))
       {
         if( msg.data1 == 176 && msg.data2 == 74 )
         {
            msg.data3*150/127 => duration;
            <<<duration>>>;
         }
         if( msg.data1 == 176 && msg.data2 == 71 )
         {
            msg.data3*samples/(127) => position;
            <<<position>>>;
         }
         if( msg.data1 == 224 )
         {
            msg.data3*2.0/127 => pitch;
            <<<pitch>>>;
         }
         if( msg.data1 == 176 && msg.data2 == 1 )
         {
            msg.data3*4.0/127 => randpitch;
            <<<randpitch>>>;
         }
         if( msg.data1 == 176 && msg.data2 == 73 )
         {
            msg.data3*samples/127 => randompos;
            <<<randompos>>>;
         }
         if( msg.data1 == 176 && msg.data2 == 72 )
         {
            msg.data3/127.0 => R.mix;
         }
       }

Midi controller mapping.

       Std.rand2f(pitch-randpitch,pitch+randpitch) => buf2.rate;
       Std.rand2(position-randompos,position+randompos) => buf2.pos;
       0.4 => buf2.gain;
       e.keyOn();
       duration*0.5::ms => now;
       e.keyOff();
       duration*0.5::ms => now;

Control of the play back rate (pitch transposition), position, and envelope.


Usage

Download both chuck files. In "grain.ck" change the sound file to the specified location. Then add a shred from "grain_control.ck" Midi controller numbers might have to be changed for your midi controller. Tweak some knobs and ENJOY!

Granular Chuck code

Multiple Grain Instances