Mute, em JMF!

Olá, estou aprendendo a usar JMF e gostaria de dar mute em um Player!

Class:

[code] public class SimplePlayerApplet {
String movieURL = “Track 16.wav”;
Player player;
public SimplePlayerApplet() throws IOException, NoPlayerException{
player = Manager.createPlayer(new File(movieURL).toURL());
}public void start() throws IncompatibleTimeBaseException{
player.start();
player.addControllerListener((ControllerListener) this);
}public void stop(){
player.stop();
}

}[/code]

Gostaria de tirar o som da musica e depois retornar! Alguem sabe como fazer isso?

Obrigado! :lol: