• Hardware Platform NVIDIA 1650 4GB
• DeepStream Version 7.1
I am working with DeepStream 7.1 and want to record video when an object is detected (5 seconds before detect, and 5 seconds after detect). I explored the example at apps/sample_apps/deepstream-testsr
, which records video using START_TIME and DURATION. However, I face the following challenges:
- The example using RTSP stream, but when I use filesrc, so the recording length doesn’t match the expected duration of the video. Why?
- Can I record multiple independent videos at the same time? (suppose frame_i I detect object, frame_i+1 I also detect. So it will record 2 videos)
- I am considering using GstBuffer to manually save frames, but I am struggling with implementing.
Thanks