Nvstreamdemux rtmpsink stucked

Please provide complete information as applicable to your setup.

• Hardware Platform (Jetson / GPU)
V100
• DeepStream Version
5.1
• JetPack Version (valid for Jetson only)
• TensorRT Version
7.2.2
• NVIDIA GPU Driver Version (valid for GPU only)
460
• Issue Type( questions, new requirements, bugs)
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)
by running the command bellow
gst-launch-1.0 uridecodebin uri=rtmp://58.200.131.2:1935/livetv/cctv1 ! nvvideoconvert ! queue ! mux.sink_0 nvstreammux name=mux batch-size=1 width=1920 height=1080 ! nvstreamdemux name=demux demux.src_0 ! nvvideoconvert ! nvv4l2h264enc ! h264parse ! flvmux ! rtmpsink location=rtmp://192.168.11.164:9505/livestream/10000000001380000014?token=f58f6968ed7089d25aa5dfed28409ecc"

• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)
nvstreammux nvstreamdemux

I wanted to verify pushing multi rtmp stream,

Setting pipeline to PAUSED …
Pipeline is PREROLLING …
Redistribute latency…
Prerolled, waiting for buffering to finish…
Pipeline is PREROLLED …
Setting pipeline to PLAYING …
New clock: GstSystemClock

the stream could not be received,
Neigher the command below worked.

gst-launch-1.0 -e nvstreammux name=mux batch-size=2 width=1920 height=1080 ! nvstreamdemux name=demux rtmpsrc location=rtmp://58.200.131.2:1935/livetv/cctv1 ! decodebin ! nvvideoconvert ! queue ! mux.sink_0 demux.src_0 ! queue ! nvvideoconvert ! nvv4l2h264enc ! h264parse ! flvmux ! rtmpsink location=rtmp://192.168.11.164:9505/livestream/10000000001380000014?token=f58f6968ed7089d25aa5dfed28409ecc

but when I tried the command below, it worked

gst-launch-1.0 -e nvstreammux name=mux batch-size=2 width=1920 height=1080 ! nvstreamdemux name=demux filesrc location=/opt/nvidia/deepstream/deepstream-5.1/samples/streams/sample_720p.h264 ! h264parse ! nvv4l2decoder ! queue ! mux.sink_0 demux.src_0 ! queue ! nvvideoconvert ! nvv4l2h264enc ! h264parse ! flvmux ! rtmpsink location=rtmp://192.168.11.164:9505/livestream/10000000001380000014?token=f58f6968ed7089d25aa5dfed28409ecc

Please help to check if something was wrong. Thanks

After setting rtmpsink property sync=false, it works. Thanks

Glad to know you fixed it.