Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

Re : Constructor is undefined - Minim AudioInput

$
0
0
Change the Declaration and the Argument in the Constructor... ie. 

  1.   private BeatDetect beat;
  2.   private AudioPlayer source;
  3.   
  4.   BeatListener(BeatDetect beat, AudioPlayer source)
  5. ... 
becomes

  1.   private BeatDetect beat;
  2.   private AudioInput source;
  3.   
  4.   BeatListener(BeatDetect beat, AudioInput source)
  5. ...



Viewing all articles
Browse latest Browse all 1768

Trending Articles