Hello.
I’m working on a video export.
I entered multiple cameras and audio sources.
However, time value can only be entered in one section.
This is the SDK sample code.
-------------------------------------------------------------------------------------
_exporter = new DBExporter(true);
_exporter.Init();
_exporter.Path = destPath;
for(…)
{
_exporter.CameraList.Add(camera);
}
_exporter.AudioList.AddRange(audioSources);
_exporter.StartExport(startTime, endTime);
**-------------------------------------------------------------------------------------**
The “StartExport” function can only be used once.
What if I have more than one time interval to enter?
Can I set multiple start and end times for the same camera on exporter?
Please help. thank you.