String vals[] = (settings.readSetting(current)).split("_");
int width = Integer.parseInt(vals[0]);
int height = Integer.parseInt(vals[1]);
int fps = Integer.parseInt(vals[2]);
int quality = Integer.parseInt(vals[3]);
sc.invoke("publish", new Object[] { str, width, height, fps, quality });
// messageGrabber("stream "+str);
messageplayer("command received: publish " + str, null, null);
// state.set(PlayerCommands.publish, str);
// state.set(State.values.stream, str);
Util.log("publish: " + str, this);