Deepstreamapp UDP issue

Please provide complete information as applicable to your setup.

**• Hardware Platform (Jetson / GPU) Jetson
**• DeepStream Version 7.1
**• JetPack Version (valid for Jetson only) 6.2
**• TensorRT Version 10.8
• NVIDIA GPU Driver Version (valid for GPU only)
**• Issue Type( questions, new requirements, bugs) deepstream-app -c deepstream_config, shows NO vaild RTSP URL was provided. But i use udp instead of RTSP in deepstream_config, whose source0 type=4.
• 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)


to test gstreamr pipeline, i use
gst-launch-1.0 -v udpsrc port=5000 caps=“application/x-rtp, media=(string)video, payload=(int)96, clock-rate=(int)90000, encoding-name=(string)H264” ! rtph264depay ! h264parse ! queue ! nvv4l2decoder ! queue ! nvvideoconvert ! queue ! nvdsosd ! queue ! nveglglessink
git

it shows that a timetamping problem, how should i do.

You need to check if the pts of the stream generated by your udpsrc is smooth.

I added sync=false qos=false before nveglglessink, and it solved the timestamping problem. But i still can not show the video in deepstream-ap -c deepstream_config , which is as same as the first image i upload.

Deepstream-app cannot support udp source. If you want to use udpsrc, you can write your own sample according to our demo deepstream_python_apps.

I’ve solved this problem, thanks for your delightful help.