I got the following exception
In my application, I'm playing .3gp audio file. Its working well on nokia n79, n78, e63. But its not playing well on some nokia mobiles (s40 mobiles). I have tested some emulators also. But I got the MediaException. Following code i have used,Code:javax.microedition.media.MediaException: Cannot create a Player for: audio/mpeg
Also Its not playing on nokia RDA devices. Why its not playing on RDA devices?Code:InputStream audioStream = getClass().getResourceAsStream("/1.3gp"); Player player = Manager.createPlayer(audioStream, "audio/mpeg"); player.realize(); player.prefetch(); player.start();

Reply With Quote

