private void Record()
 {
     RemoteKinect.Server.Status = Status.RECORDING;
     recording = true;
     RaisePropertyChanged("CanRecord");
     RaisePropertyChanged("CanForceFPS");
     CurrentDuration = 1;
     Right           = new Graphics();
     Left            = new Graphics();
     Task.Factory.StartNew(() =>
     {
         EndOfSessionTimer.Start();
         SessionPercentageTimer.Start();
         Session = DBUpdater.CreateUnsavedSession();
     });
 }