Trying to stream a video from pc to Jetson Nano using Gstreamer

Hi guys!

I’m trying to send a video using udp packets from my pc [Ubuntu] to Jetson Nano and I’m having some issues about it. First of all I’m using this pipelines
Sender:

gst-launch-1.0 -v filesrc location = 1.mp4 ! decodebin ! x264enc ! rtph264pay ! udpsink host=192.168.0.17 port=5000

Receiver:

gst-launch-1.0 -v udpsrc port=5000 caps="application/x-rtp, media=video, clock-rate=90000, encoding-name=H264, payload=96, ssrc=3394826012, timestamp-offset=2215812541, seqnum-offset=46353" ! rtph264depay ! decodebin! videoconvert ! autovideosink sync=false

The video does not play so well as I imagine it should be. I know about hardware acceleration vaapi and I’m wonder how to do this operation considering that vaapi is not appropriate to Jetson.

If you guys know some tips about this kind of operation it will be so useful.

Hi,
On Jetson Nano, you may try the pipeline:

gst-launch-1.0 -v udpsrc port=5000 caps="application/x-rtp, media=video, clock-rate=90000, encoding-name=H264, payload=96, ssrc=3394826012, timestamp-offset=2215812541, seqnum-offset=46353" ! rtph264depay ! nvv4l2decoder ! nvoverlaysink sync=false