Deep Stream save video by dividing it into 10 minutes

• Hardware Platform (Jetson / GPU) Jetson Xavier NX
• DeepStream Version 6.0
• JetPack Version (valid for Jetson only) 4.6
• TensorRT Version 8.0.1-1

Hi, is there a way i can save video divided into 10 minutes?
I am using sink to store video right now and it saves the full video from starting the deepstream to the end.
However I want to save them to 10 minutes length videos, not in one full video.

please let me know if there is a guideline, manual, or reference where I can have a more detailed look at it.

I think you’d want to use a splitmuxsink with the max-size-time property set to 1,000,000,000 nanoseconds in a second * 60 seconds in a minute * 10 minutes == 60,000,000,000. You will also need to attach a callback to the format-location-full signal that produces a new filename for each video chunk.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.