Please provide the following info (tick the boxes after creating this topic):
Software Version
DRIVE OS 6.0.6
DRIVE OS 6.0.5
DRIVE OS 6.0.4 (rev. 1)
DRIVE OS 6.0.4 SDK
other
Target Operating System
Linux
QNX
other
Hardware Platform
DRIVE AGX Orin Developer Kit (940-63710-0010-D00)
DRIVE AGX Orin Developer Kit (940-63710-0010-C00)
DRIVE AGX Orin Developer Kit (not sure its number)
other
SDK Manager Version
1.9.2.10884
other
Host Machine Version
native Ubuntu Linux 20.04 Host installed with SDK Manager
native Ubuntu Linux 20.04 Host installed with DRIVE OS Docker Containers
native Ubuntu Linux 18.04 Host installed with DRIVE OS Docker Containers
other
I’m trying to use DriveWorks SensorSerializer module to switch the output file while recording, but the following method becomes an error and cannot be executed. When I call dwSensorSerializer_initialize() again, the process terminate.
dwSensorSerializerHandle_t handle;
dwSerializerParams serializerParams;
serializerParams.parameters = “format=h264,type=disk,file=test1.h264,bitrate=8000000”;
serializerParams.onData = nullptr;
dwSensorSerializer_initialize(&handle, &serializerParams, camera);
dwSensorSerializer_start(handle);
dwSensorSerializer_serializeCameraFrameAsync(data, handle);
dwSensorSerializer_stop(handle);
dwSensorSerializer_release(handle);
serializerParams.parameters = “format=h264,type=disk,file=test2.h264,bitrate=8000000”;
dwSensorSerializer_initialize(&handle, &serializerParams, camera); ← Eror
How can I change the output file while recording by using DriveWorks API?
I want to change files without dropping frames