Skip to content

Commit

Permalink
Use MONO input to support latest mac books
Browse files Browse the repository at this point in the history
  • Loading branch information
codingjoe committed Jun 26, 2019
1 parent 4d38734 commit 6874f60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MusicBeam/MusicBeam.pde
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import controlP5.*;
import ddf.minim.*;
import ddf.minim.analysis.*;

String version = "2.4.1";
String version = "2.5.1";

public Boolean debugMode = false;

Expand Down Expand Up @@ -346,7 +346,7 @@ private void initAudioInput()
+ "There must be at least one audio input activated.";

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

if(in == null)
{
Expand Down

0 comments on commit 6874f60

Please sign in to comment.