0
How to create a music player using Java
Use music formats such as Mp3, Wav ect. To build Classes that support this audio
1 Antwort
+ 3
If android
use android.media.MediaPlayer;
Then MediaPlayer sounds = new MediaPlayer();
sounds.setDataSource(localString);
sounds.prepare();
sounds.setLooping(true);
sounds.setVolume(1,1);
sounds.play();
And If not android here
https://goo.gl/9tuvMc