Example #1
0
 internal static void Start()
 {
     if (!bGood)
     {
         return;
     }
     try
     {
         inDevice.StartRecording();
         track = new Core.Track(16);
         track.Init();
         track.Voice = vNum;
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.Message);
     }
 }
Example #2
0
 public void Start()
 {
     if (inDevice != null && !enabled)
     {
         try
         {
             inDevice.StartRecording();
         }
         catch (Exception ex)
         {
             Console.WriteLine(ex.Message);
             return;
         }
         track = new Core.Track(16);
         track.Init();
         track.Voice = vNum;
         enabled     = true;
     }
 }