Package org.bigbluebutton.webconference.voice.freeswitch.actions

Examples of org.bigbluebutton.webconference.voice.freeswitch.actions.RecordConferenceCommand


  @Override
  public void record(String room, String meetingid){
    String RECORD_DIR = "/var/freeswitch/meetings";       
     String voicePath = RECORD_DIR + File.separatorChar + meetingid + "-" + genTimestamp() + ".wav";
     
     RecordConferenceCommand rcc = new RecordConferenceCommand(room, USER, true, voicePath);
     queueMessage(rcc);
  }
View Full Code Here

TOP

Related Classes of org.bigbluebutton.webconference.voice.freeswitch.actions.RecordConferenceCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.