I’m trying to find a way to create a video from my own opencv application, so far I’ve tried the OpenCV VideoWriter and it’s gpu version and both are not working. The gpu version is not supported on the jetson and the cpu version only writes a video header to file and no frames.
Has anyone had success creating a video from their image stream in their own application?
The supported video API on Jetson is GStreamer. So you need to create an encoding pipeline with it. You can use appsrc plugin to feed your raw image data to the GStreamer pipeline, then encode it and write to file or stream to somewhere.