Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Source Audio Library In Java [closed]

Tags:

java

audio

I am looking for an open source audio library similar to BASS from un4seen (http://www.un4seen.com/) to be used in Java applications. Could someone point me to a similar project?

like image 315
Hirvesh Avatar asked Jan 25 '12 08:01

Hirvesh


People also ask

Can you play audio in Java?

Following steps are to be followed to play a clip object.Create an object of AudioInputStream by using AudioSystem. getAudioInputStream(File file). AudioInputStream converts an audio file into stream. Get a clip reference object from AudioSystem.


2 Answers

If you don't mind using native libraries, OpenAL has at least these two Java wrappers:

  • JOAL
  • LWJGL

I have yet to try it myself, but it feels pretty solid as LWJGL, which many games are based on, has chosen to use it.

like image 100
msell Avatar answered Nov 02 '22 23:11

msell


Try Beads: http://www.beadsproject.net. Available as jar, processing library or Eclipse project.

like image 28
Ollie Avatar answered Nov 03 '22 00:11

Ollie