Hi,
I been using the MKVExporter for a lot of things, to get this nice fast exports. Works great, but when using it in a Xprotect client plugin, it overwrites the _exporter.Path properties. I cant find documentation on this behavior. Also i cant seem to GET the properties of the export paht. Any advice?
i use it like this:
MKVExporter \_exporter = null;
string cameraName = “name”;
string \_path = @"[C:\\Video](file:C:/Video)";
\_exporter = new MKVExporter { Filename = cameraName };
\_exporter.Init();
\_exporter.Path = \_path;
\_exporter.CameraList.Add(videoSource);
\_exporter.StartExport((DateTime.Now.AddSeconds(-60)),DateTime.Now);