Beispiel #1
0
 public void startAudioRecord()
 {
     //Ensures that the user cannot say "take not" when its all ready recording and the display options are present
     if (!getIsRecording() && !getDisplaySelection())
     {
         audioRecording.recordStartAudio();
         audioDisplay.changeRecordingDisplay(true);
         audioDisplay.setNotify(false);
         audioDisplay.changeRecordingNotification();
         setIsRecording(true);
     }
 }
 private void startMic()
 {
     display.changeRecordingDisplay(true);
     _source.clip = Microphone.Start("", false, (int)timer.getEndCount(), 48000);
 }