How to connect UDP stream to TouchDesigner

Hello, I am trying to connect a RTP stream of my webcam into TouchDesigner. I’m working with Gstreamer to get the stream through command line.

This is the command I run in PowerShell to get the server going:

gst-launch-1.0 rtpbin name=rtpbin rtp-profile=avpf ! ksvideosrc ! videoconvert ! x264enc noise-reduction=1000 tune=zerolatency bitrate=2048 ! rtph264pay config-interval=1 pt=96 ! rtprtxqueue ! rtpbin.send_rtp_sink_0 rtpbin.send_rtp_src_0 ! udpsink port=5000 host=127.0.0.1 ts-offset=0 name=vrtpsink rtpbin.send_rtcp_src_0 ! udpsink port=5001 host=127.0.0.1 sync=false async=false name=vrtcpsink udpsrc port=5005 name=vrtpsrc ! rtpbin.recv_rtcp_sink_0

Inside the TOP, in the server parameter I put “rtp://127.0.0.1:5000” but nothing happens.


What am I doing wrong?

If it helps, I can also run a python code to get a server going on my machine, Pastie .