I'm making a music-player like application for desktops. I'd like to support as many audio types as possible but since I've had trouble finding a library that supports all of the files types I'd like. So I've decided to go with using a bunch of libraries together in order to support what I want.

I'm using JLayer for mp3 files, and now I'm looking for something that I can use to play audio MPEG 4 files since it's a fairly common audio type. Does anyone know of a library that would do this? I've looked around a bit but I haven't had much luck.

link|improve this question

Note that most sound APIs work by using a Service Provider Interface. Then it is just a matter of finding (and adding to the run-time class-path) the SPI for the format. – Andrew Thompson Feb 10 at 0:58
You can use VLCJ to become a music player, which uses libVLC, taking the benefits of features in VLC media player that can play most media containers and formats – ee. Feb 10 at 0:59
Hmmm VLCJ looks really enticing. Is VLCJ pretty much a really awesome replacement for the JMF? – Nico Feb 10 at 1:16
Hmmm? I hate to give a personal opinion. But, VLCJ is as good as VLC if you know what I mean. It is actively maintained as VLC project itself. Good enough to hear that VLC 2.x.x libraries and plugins will be licensed as LPGL 2.1 – ee. Feb 10 at 1:30
VLCJ still has an issue running in multiple instances under the same app (i.e. having like 12 multiple video screens in the same app's process). However, it can be solved with out-of-process technique. Other than that, to get full benefits on VLC features in VLCJ, you need to match VLCJ version against libVLC version. – ee. Feb 10 at 1:37
show 6 more comments
feedback

1 Answer

Have you looked at JAAD?

link|improve this answer
Nope but that looks like it would do the trick. However it would probably still be easier for me to use 1 instead of many if I can, VLCJ looks kind of nice. What's the downside? – Nico Feb 10 at 1:21
I'm going to take a look at this too just in case, thank you! – Nico Feb 10 at 1:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.