Gstreamer pipeline

Please provide complete information as applicable to your setup.

**• Hardware Platform (Jetson / GPU)**Jetson
• DeepStream Version5.0
• JetPack Version (valid for Jetson only)
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only)
• Issue Type( questions, new requirements, bugs)
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)

gst-launch-1.0 rtspsrc location=rtsp://192.168.3.199/h264/ch1/main/av_stream ! rtph264depay ! nvv4l2decoder ! m.sink_0 nvstreammux name=m batch-size=1 width=1920 height=1080 ! nvinfer config-file-path=pgie_config.txt ! nvvideoconvert ! nvdsosd ! nvvideoconvert ! nvv4l2h264enc ! h264parse ! flvmux ! rtmpsink location=rtmp://192.168.3.200:1935/live/test sync=false
infer plugin interval = 9 cost 500ms, fps = 20
Then I want rtmpsink output is frame per 50ms,I can add plug-ins to keep the most recent multiframes to smooth out the interval between outputs per frame,But I can not find good way to do this

You may need to develop your own plugin to convert the frame rate of stream(recalculate timestamp, insert new frames and dropping unnecessary frames). Current gstreamer and deepstream can not meet you requirement.