}
public void onTranscode()
{
TranscodeWizard w = new TranscodeWizard(getParentFrame(), prefs.transcodeWizardConfig);
boolean result = w.run();
// store preferences if successful
if (result)
{
containerPlayer.setRealizedStartedProcessor(w.getResult().processor);
prefs.transcodeWizardConfig = w.getConfig(); // TODO: this is the same object, we need to copy somewhere.
savePrefs();
}
}