Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) GPU
• DeepStream Version 6.2
• Issue Type( questions, new requirements, bugs) question
• Language Python
I would like to reduce the FPS before inference to fasten the overall process. In this stack overflow post, i saw this code to reduce FPS
def create_videorate_filter():
filter = Gst.ElementFactory.make('videorate', 'videorate')
if not filter:
sys.stderr.write(" Unable to create capsfilter \n")
filter.set_property("max-rate", 5)
return filter
In a multi stream pipeline I am not sure where to add this filter. I tried adding it after the streammux, but i am not getting any output