The associated media player factory will not be released, the client application is responsible for releasing the factory at the appropriate time.
4647484950515253545556
f.setSize(800, 600); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { mediaPlayerComponent.release(true); } }); f.setContentPane(mediaPlayerComponent); f.setVisible(true);