public void StartRecording() { var path = $"{TEMP_FILE_PATH}{VIDEO_FILE_FORMAT}"; _recorder = RecorderFactory.Create(); _recorder.ConfigureCaptureToFile(path, _setup); _state = State.Recording; }
/// <summary> /// Creates an ActiveRecorder within the TQF /// </summary> /// <param name="name">Unique name for the ActiveRecorder</param> public static void Create(RecorderType type, string name) { Create(RecorderFactory.Create(type, name)); }