Advertisement
ChrisJJ

Untitled

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