I am using JMF to play audio of an mp3 file but failing to do so...
can somebody help... when I am compiling and running the same .java file on windows platform it's working... but it's not working on Linux platform. It is giving the folowing exception when run on Red Hat Linux 9.0
but Linux was able to play the same mp3 file using media players that exists on it.
Unable to handle format: mpeglayer3, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed, 12000.0 frame rate, FrameSize=32768 bits Failed to realize: com.sun.media.PlaybackEngine@186768e Error: Unable to realize com.sun.media.PlaybackEngine@186768e
This is the javacode that I am using...
import javax.media.*; import java.io.*;
public class audio { Player p;
public audio() { try { File f = new File("./1.mp3"); p = Manager.createPlayer(f.toURL()); p.start(); } catch(Exception e) { System.out.println("Error in constructor : "+e); } } public static void main(String argv[]) { audio a = new audio(); } };
Regards Jyothsna
skip coon
Greenhorn
Joined: Feb 01, 2003
Posts: 13
posted
0
Hey there,
I know that java-1.4.2 does not have such great support for the ALSA sound system. So you may want to give java-1.5 a shot.