Input mp3

How to input a mp3 file on the code please ?

Tagged:

Answers

  • Read the sound library examples.

  • Yes, I tried this: import processing.sound.*; SoundFile file;

    void setup() { size(640, 360); background(255);

    file = new SoundFile(this, "Blue.mp3"); file.play(); }

    void draw() { } but it don't work :/

Sign In or Register to comment.