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.

I'm trying to develop a Java MP3 Streaming app. For Starters, I just need to play a simple MP3 from my hard drive. So! I'm Using JMF and this example class:

package com.main;

import java.io.File;
import javax.media.Format;
import javax.media.Manager;
import javax.media.MediaLocator;
import javax.media.Player;
import javax.media.PlugInManager;
import javax.media.format.AudioFormat;

public class AudioTest {
public static void main(String[] args) {
    Format input1 = new AudioFormat(AudioFormat.MPEGLAYER3);
    Format input2 = new AudioFormat(AudioFormat.MPEG);
    Format output = new AudioFormat(AudioFormat.LINEAR);
    PlugInManager.addPlugIn(
        "com.sun.media.codec.audio.mp3.JavaDecoder",
        new Format[]{input1, input2},
        new Format[]{output},
        PlugInManager.CODEC
    );
    try{
        Player player = Manager.createPlayer(new MediaLocator(new File("song.mp3").toURI().toURL()));
        player.start();
    }
    catch(Exception ex){
        ex.printStackTrace();
    }
}
}

If I use a WAV file, it goes perfectly, but when I pass an mp3 file, it just stands there, silently. No errors whatsoever.

Update:

Thanks to Andrew Thompson for making me notice that not all mp3 are usable. :D

Now, I'm having some problems on the RTP streaming (more on the "reciving") part:

I used the same code from this post: MP3 won't stream with JMF.

I have the same problem! Wav is being played with some quality issues, and MP3 throws this error: RTP Handler internal error: javax.media.ControllerErrorEvent[source=com.sun.media.content.unknown.Handler@85f3d6,message=Internal module com.sun.media.BasicRendererModule@f11bc: failed to handle a data format change!]

Even adding the solution proposed from the poster (adding the plugin on both Server and Client Constructors) doesn't seem to work.

Here is my RTPServer: http://pastebin.com/h1U3kZSK

Here is my RTPClient: http://pastebin.com/b3F8Zwpp

share|improve this question
1  
1) Not al; MP3s are created equal, first, confirm the code works with some of the 'JMF compatible' MP3s found here 2) Note that the mp3plugin.jar (part of JMF) can add MP3 support to plain old Java Sound. No 'rest of JMF' necessary. – Andrew Thompson Aug 21 '12 at 23:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.