最小和处理问题



尝试创建一个可以以不同的频率/速率播放录制样本的声音采样器,并使用tick级来改变播放速率,类似于tickrate示例。当我运行时,我在player.patch(rateControl).patch(out);上获得NullpoInterException,但不知道为什么,为什么有任何想法?

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();
  }
}

您仅设置player等于keyReleased()函数中的内容。因此,当运行setup()时,player仍然具有默认的null值。

退后一步,您应该养成调试代码的习惯。当您获得NullPointerException时,请尝试打印该行上每个变量的值。您会发现哪一个是null,然后您可以找出原因。

相关内容

  • 没有找到相关文章

最新更新