Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a simple media player in Java that will be able to play (not encode or convert or anything fancy) some common audio formats, including MP3 and OGG.

I thought it would be easy, but after spending the whole afternoon looking at JMF, JVLC and other inappropriate and / or outdated systems, I'm starting to wonder whether there is an easy way to play audio files in Java and if yes, then how do I do it ?

share|improve this question

2 Answers

up vote 2 down vote accepted

I managed to play MP3 with JLayer (from the JZoom team), and I'm currently looking at JOrbis for playing OGG Vorbis file, so I guess this is resolved. Thanks to everyone that helped.

share|improve this answer
1  
+1 Thanks for reporting back. Please mark your answer as correct so people can easily see this has been resolved. – Andrew Thompson Jun 20 '11 at 16:29

try to use Java FX not very huge support of formats but supports mp3, AAF, you can find a working demo here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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