1

试图创建一个声音采样器,它可以以不同的频率/速率播放录制的样本,并使用 TickRate 来更改播放速率,类似于 TickRate 示例。当我运行时,我在这里得到一个 NullPointerExceptionplayer.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();
  }

}
4

1 回答 1

0

您只设置player等于keyReleased()函数中的某些内容。所以setup()运行的时候,player还是有默认null值的。

退后一步,你应该养成调试代码的习惯。当你得到 aNullPointerException时,尝试打印出该行上每个变量的值。你会发现哪一个是null,然后你就能找出原因。

于 2017-12-27T22:51:48.470 回答