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