Jump to content

Jetson Xavier NX/Gstreamer/Example Pipelines/Streaming: Difference between revisions

no edit summary
(Created page with "<noinclude> {{JetsonXavierNX/Head|previous=Gstreamer/Example_Pipelines/Decoding|next=Gstreamer/Example_Pipelines/Transforming|keywords=gstreamer,gstreamer pipelines,streaming,...")
 
No edit summary
Line 53: Line 53:
gst-launch-1.0 udpsrc port=5000 ! application/x-rtp,encoding-name=H265,payload=96 ! rtph265depay ! h265parse ! queue ! avdec_h265 ! xvimagesink sync=false async=false -e
gst-launch-1.0 udpsrc port=5000 ! application/x-rtp,encoding-name=H265,payload=96 ! rtph265depay ! h265parse ! queue ! avdec_h265 ! xvimagesink sync=false async=false -e
</pre>
</pre>
===VP8===
====OMX Serder ====
<pre style="background:#d6e4f1">
CLIENT_IP=<IP_ADDRESS>
gst-launch-1.0 -e nvarguscamerasrc ! 'video/x-raw(memory:NVMM), width=1920, height=1080, framerate=30/1' ! omxvp8enc ! rtpvp8pay mtu=1400 ! udpsink host=$CLIENT_IP port=5000 sync=false async=false
</pre>
====V4L2 Serder====
<pre style="background:#d6e4f1">
CLIENT_IP=<IP_ADDRESS>
gst-launch-1.0 -e nvarguscamerasrc ! 'video/x-raw(memory:NVMM), width=1920, height=1080, framerate=30/1' ! nvv4l2vp8enc ! rtpvp8pay mtu=1400 ! udpsink host=$CLIENT_IP port=5000 sync=false async=false
</pre>
====PC Client====
<pre style="background:#d6e4f1">
gst-launch-1.0 udpsrc port=5000 ! application/x-rtp,encoding-name=VP9,payload=96 ! rtpvp8depay ! queue ! avdec_vp8 ! xvimagesink sync=false async=false
</pre>


===VP9===
===VP9===
1,433

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.