微量和处理的问题

时间:2017-12-27 22:47:42

标签: audio processing audio-recording minim

尝试创建一个可以以不同频率/速率播放录制样本的声音采样器,并使用TickRate更改播放速率,类似于TickRate示例。当我运行时,我在这里得到一个NullPointerException player.patch(rateControl).patch(out);,但无法弄清楚为什么,任何想法为什么?

import ddf.minim.*;
import ddf.minim.analysis.*;
import ddf.minim.signals.*;
import ddf.minim.ugens.*;
import ddf.minim.spi.*;

Minim minim;
AudioOutput out;
AudioSample sample1;

AudioInput in;
AudioRecorder recorder;
boolean recorded;
FilePlayer player;
TickRate rateControl;

void setup()
{

  size(512, 200, P3D);
  minim = new Minim(this);

  in = minim.getLineIn(Minim.STEREO, 512);

  recorder = minim.createRecorder(in, "myrecording2.wav");
  rateControl = new TickRate(1.f);
  out = minim.getLineOut(Minim.STEREO, 512);
  player.patch(rateControl).patch(out);


  textFont(createFont("Arial", 12));

}

void draw()
{
  if ( recorder.isRecording() )
  {
    fill(255,255,255);
    text("Now recording, press the r key to stop recording.", 5, 310);
  }
  else if ( !recorded )
  {
    fill(255,255,255);
    text("Press the r key to start recording.", 5, 315);
  }
  else
  {
    fill(255,255,255);
    text("Press the q key to save the recording to disk as a sample.", 5, 315);

  }

    for(int i = 0; i < out.bufferSize() - 1; i++)
  {
    float x1 = map(i, 0, out.bufferSize(), 0, width);
    float x2 = map(i+1, 0, out.bufferSize(), 0, width);
    line(x1, 50 + out.left.get(i)*50, x2, 50 + out.left.get(i+1)*50);
    line(x1, 150 + out.right.get(i)*50, x2, 150 + out.right.get(i+1)*50);
  }

}

void keyReleased()
{
  if ( !recorded && key == 'r' ) 
  {
    if ( recorder.isRecording() ) 
    {
      recorder.endRecord();
      recorded = true;
    }
    else 
    {
      recorder.beginRecord();
    }
  }
  if ( recorded && key == 'q' )
  {
    player = new FilePlayer( recorder.save() );
    sample1 = minim.loadSample( "myrecording.wav" , 512 );
    if ( sample1 == null ) println("didn't get sample");
  }
}

void keyPressed()
{
  if ( key == 's' ) 
  {
    sample1.trigger();
  }

  else if ( key == 'd' )
  {
    rateControl.value.setLastValue(3.0f);
    sample1.trigger();
  }

}

1 个答案:

答案 0 :(得分:0)

您只需将player设置为keyReleased()功能中的某个内容。因此,当setup()运行时,player仍然具有默认的null值。

退一步,你应该养成debugging your code的习惯。获得NullPointerException后,尝试打印该行上每个变量的值。你会发现哪一个是null,然后你可以找出原因。