private void broadcastToIcecast(String room, String meetingid) {
String shoutPath = icecastProtocol + "://" + icecastUsername + ":" + icecastPassword + "@" + icecastHost + ":" + icecastPort
+ File.separatorChar + meetingid + "." + icecastStreamExtension;
BroadcastConferenceCommand rcc = new BroadcastConferenceCommand(room, USER, true, shoutPath);
queueMessage(rcc);
}