Advertisement
ChrisJJ

Untitled

Oct 4th, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1.  
  2. import ddf.minim.*;
  3.  
  4. void setup()
  5. {
  6. Minim minim;
  7. AudioPlayer player;
  8.  
  9. minim = new Minim(this);
  10.  
  11. player = minim.loadFile("C:\\temp\\4.wav");
  12. player.play();
  13. }
  14.  
  15. void draw()
  16. {
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement