I’m working on a DeepStream pipeline with an RTSP input source running at 30 FPS. I want to reduce the processing FPS to 5. I’m aware of using the videorate
element for frame dropping, but I came across the drop-frame-interval
property in the nvv4l2decoder
.
There’s very little documentation on how exactly drop-frame-interval
works.
- Can
nvv4l2decoder drop-frame-interval
be used to control the effective FPS from an RTSP source? - If yes, how exactly does it drop the frames?
- Is it a recommended alternative to using
videorate
in production?
Would appreciate any technical insight or references.
Thanks!