Now I am trying with another sound file with mp3 codec. But I am encounterring problem to start the player.
I have downloaded the file from http://www.mediacollege.com/audio/tone/download/
The output from Netbeans is:
run: Error: Unable to realize com.sun.media.amovie.AMController@ebf3f0 BUILD SUCCESSFUL (total time: 2 seconds)
And my program is:
import javax.media.*;
import java.io.*;
public class MP3Player {
public static void main(String[] args) throws Exception
{
File file = new File("c:/player/sound.mp3");
MediaLocator mrl = new MediaLocator(file.toURL());
Player player = Manager.createPlayer(mrl);
player.start();
Thread.sleep(1000);
}
}