I have a favor to ask
bool isStarted = false;
_cameraItem = new Item();
_cameraItem.Name = m_strCameraName;
List audioSources = new List();
mExporter = new VideoOS.Platform.Data.MKVExporter() { Filename = “fffffffffffff” };
mExporter.Init();
mExporter.Path = Path.Combine( m_strSaveFolder);
mExporter.CameraList = new List() { _cameraItem };
mExporter.AudioList = audioSources;
DateTime dateStart = DateTime.Parse(m_strStartTime);
DateTime dateEnd = DateTime.Parse(m_strEndTime);
isStarted = mExporter.StartExport(dateStart, dateEnd);
mExporter.StartExport In this code
A VideoOS.Platform.NotAuthorizedMIPException occurs.
Additional Information : You are not authorized to do export for one or more of the provided devices. the message came out.
All camera information connected to the MIP can be imported
Problems When Running Export
Is there a problem with the above code?