• Hardware Platform (Jetson / GPU): Nvidia RTX A5500
• DeepStream Image: 8.0-gc-triton-devel
• NVIDIA GPU Driver Version (valid for GPU only): 580.95.05
• Issue Type( questions, new requirements, bugs): bugs
I am trying to communicate two pipelines. The first pipeline is established via Graph Composer and second one via terminal.
Second pipeline is established with the following command
gst-launch-1.0 filesrc location=sample_720p.mp4 ! decodebin ! nvvideoconvert ! 'video/x-raw(memory:NVMM)' ! nvv4l2h264enc ! rtph264pay ! udpsink host=127.0.0.1 port=5000
But on the gxf_server terminal following error has been observed.
2025-11-25 08:36:06.082 ERROR extensions/nvdsudp/nvdsudpsrc.hpp@35: Could not create GStreamer element 'nvdsudpsrc'
2025-11-25 08:36:06.082 ERROR gxf/std/program.cpp@543: Couldn't run async. Deactivating...
2025-11-25 08:36:06.082 ERROR gxf/core/runtime.cpp@1633: Graph run failed with error: GXF_FAILURE
2025-11-25 08:36:06.082 ERROR gxf/gxe/gxe.cpp@282: GxfGraphRunAsync Error: GXF_FAILURE
Since Graph Composer utilizes nvdsudpsink instead of udpsink, the most straightforward solution would be to generate a new component using GStreamer’s udpsink. However, it is evident from the previous ticket that the component generation tool is currently bugged.
So, Is there a method use UDP protocol in Graph Composer?
