Loading...
Logo
Processing Forum
     Hello,

            I am trying to make a virtual theremin with beads, to make it sound  like a  real deal  I applied tremolo effect like in code below, but if I try to change sound pitch quickly it begin generating an awful sound, you  clearly can hear that in example below, just try to move mouse cursor  fast as possible up an down. So my question is, what to do, to be able to change sound pitch quickly and smoothly and still get decent tremolo effect

                  thank in advance :)
 

Copy code
  1. // Frequency_Modulation_02.pde

  2. import beads.*; //sound library 
  3. AudioContext ac; // create our AudioContext

  4. // declare our unit generators
  5. WavePlayer modulator;
  6. Glide modulatorFrequency;
  7. WavePlayer carrier;

  8. Gain g;

  9. void setup()
  10. {
  11.   size(400, 300);

  12.   // initialize our AudioContext
  13.   ac = new AudioContext();
  14.   
  15.   // create the modulator, this WavePlayer will control the frequency of the carrier
  16.   modulatorFrequency = new Glide(ac, 20, 30);
  17.   modulator = new WavePlayer(ac, 1, Buffer.SINE);

  18.   // this is a custom function
  19.   // custom functions are a bit like custom Unit Generators (custom Beads)
  20.   // but they only override the calculate function
  21.   Function frequencyModulation = new Function(modulator)
  22.   {
  23.     public float calculate() {
  24.       // return x[0], which is the original value of the modulator signal (a sine wave)
  25.       // multiplied by 200.0 to make the sine vary between -200 and 200
  26.       // the number 200 here is called the "Modulation Index"
  27.       // the higher the Modulation Index, the louder the sidebands
  28.       // then add mouseY, so that it varies from mouseY - 200 to mouseY + 200
  29.       return (x[0] * 50.0) + mouseY;
  30.     }
  31.   };

  32.   // create a second WavePlayer, control the frequency with the function created above
  33.   carrier = new WavePlayer(ac, frequencyModulation, Buffer.SINE);

  34.   g = new Gain(ac, 1, 0.5); // create a Gain object to make sure we don't peak

  35.   g.addInput(carrier); // connect the carrier to the Gain input
  36.   
  37.   ac.out.addInput(g); // connect the Gain output to the AudioContext
  38.   
  39.   ac.start(); // start audio processing
  40. }

  41. void draw()
  42. {
  43.   modulatorFrequency.setValue(mouseX);
  44. }