Hi,
I’m using the given below command to stream from my jetson to my display system (imx8) where both the boards are connected via ethernet cable.
Gst-launch-1.0 videotestsrc ! nvvidconv ! nvv4l2h264enc ! rtph264pay config-interval=1 pt=96 ! Udpsink host=192.168.100.10(imx8 ip) port=5555
This command is sending rtp packets over udp. I want to use rtsp instead of rtp, so what are the changes i need to do.
at the receiver end i’m using the given below command
Gst-launch-1.0 udpsrc port=5555 caps=“application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264” ! rtph264depay ! h264parse ! decodebin ! Autovideosink sync=false
is there any change that i need to do here as well
thank you