processing sound android

Solutions on MaxInterview for processing sound android by the best coders in the world

showing results for - "processing sound android"
Nisha
05 Apr 2018
1//method using Cassette library
2import cassette.audiofiles.SoundFile;
3
4SoundFile sound;
5
6void setup()
7{
8  sound = new SoundFile(this, "sound.wav");
9}
10
11void draw()
12{
13  if(playSound)
14  {
15    sound.Play();
16  }
17}