Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I play a .mp3 and a .wav in my java application? I am using Swing, I tried looking on the internet, for like this example:

    public void playSound(){
    try{
        AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File("D:/MusicPlayer/fml.mp3").getAbsoluteFile());
        Clip clip = AudioSystem.getClip();
        clip.open(audioInputStream);
        clip.start();
    }catch(Exception ex){
        System.out.println("Error with playing sound.");
        ex.printStackTrace();
    }
}

But, this will only play .wav files.

The same with:

http://www.javaworld.com/javaworld/javatips/jw-javatip24.html

Can anyone help me with this? I want to play both .mp3 files and .wav files with the same method.

share|improve this question

8 Answers

up vote 17 down vote accepted

Java7 now has Media and MediaPlayer classes which will play mp3 files.

Example code:

String bip = "bip.mp3";
Media hit = new Media(bip);
MediaPlayer mediaPlayer = new MediaPlayer(hit);
mediaPlayer.play();

You will need the following import statements:

import javafx.scene.media.Media;
import javafx.scene.media.MediaPlayer;
share|improve this answer
Oh, that's awesome, thanks. – Stan Apr 25 '12 at 13:56
2  
It worked for me but the libraries were available only in a javafx project in netbeans and used the following code – NeilGhosh Jul 14 '12 at 9:31
3  
final URL resource = getClass().getResource("a.mp3"); – NeilGhosh Jul 14 '12 at 9:32
7  
this isnt working for me at all. it says that the imports do not exist. and i am running java 7... – wbAnon Nov 26 '12 at 3:09
1  
Wish I could use this without annoying my players with javaupdates. – arynaq Apr 8 at 0:45
show 2 more comments

It's been a while since I used it, but JavaLayer is great for MP3 playback

share|improve this answer
Yes, it's very cool. Simple and doesn't seem platform dependant. Plays fine in a background and just need to figure out how to stop a thread. – James Poulson Aug 11 '12 at 16:00

I wrote a pure java mp3 player: mp3transform.

share|improve this answer
Thank you for this :) Your source code is neat and easy to read. I've learned alot from this :) – d0lph1n Mar 27 '12 at 20:40

Looks like you'll need a plugin of some sorts. JMF should have what you need.

http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140239.html

share|improve this answer
1  
Well, i'm not sure how to use these things, i've never used them before. How can I implent it, how can I use it? – Stan May 18 '11 at 16:50

You need to install JMF first (download using this link)

File f = new File("D:/Songs/preview.mp3");
MediaLocator ml = new MediaLocator(f.toURL());
Player p = Manager.createPlayer(ml);
p.start();

don't forget to add JMF jar files

share|improve this answer

Do a search of freshmeat.net for JAVE (stands for Java Audio Video Encoder) Library (link here). It's a library for these kinds of things. I don't know if Java has a native mp3 function.

You will probably need to wrap the mp3 function and the wav function together, using inheritance and a simple wrapper function, if you want one method to run both types of files.

share|improve this answer
I really have no idea how to use custom libraries, any help with it? – Stan May 20 '11 at 19:30
Download the library and write an include statement in your code. There should be instructions on library use included. Usually, a function call suffices, though you may need to declare an object first. Then, create a function which checks the file extension of its input, and calls the library function you want. – Spencer Rathbun May 20 '11 at 20:16

To add MP3 reading support to Java Sound, add the mp3plugin.jar of the JMF to the run-time class path of the application.

Note that the Clip class has memory limitations that make it unsuitable for more than a few seconds of high quality sound.

share|improve this answer

you can play .wav only with java API:

import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;

code:

AudioInputStream audioIn = AudioSystem.getAudioInputStream(MyClazz.class.getResource("music.wav"));
Clip clip = AudioSystem.getClip();
clip.open(audioIn);
clip.start();

And play .mp3 with jLayer

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.