// We reuse the instance, we do not reload the full player everytime.
// Thus, we stop any previously running item, clear the playlist and add our item
playlist.stop();
playlist.clear();
playlist.addItem(playerFileTextField.getText(), ":start-time=30 :no-audio :no-video-title-show");
playlist.play();
}
};
playerFileTextField.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
loadPlayerFileRunnable.run();