Jump to content

GStreamer pipelines for Jetson TX2: Difference between revisions

mNo edit summary
Line 998: Line 998:
</pre>
</pre>
   
   
Using VLC
*Server:
<pre>
CLIENT_IP=<IP_ADDRESS>
gst-launch-1.0 nvcamerasrc fpsRange="30 30" intent=3 ! nvvidconv flip-method=6 \
! 'video/x-raw(memory:NVMM), width=(int)1920, height=(int)1080, format=(string)I420, framerate=(fraction)30/1' ! \
omxh264enc control-rate=2 bitrate=4000000 ! 'video/x-h264, stream-format=(string)byte-stream' ! \
h264parse ! rtph264pay mtu=1400 ! udpsink host=$CLIENT_IP port=5000 sync=false async=false
</pre>
<pre>
*Client:
vlc -vv --demux h264 --h264-fps 60  udp://@:5000
</pre>
=== h264 parse missing===
=== h264 parse missing===
In case gstreamer complains when running the pipeline for missing the h264parse plugin, run the following command to install it:  
In case gstreamer complains when running the pipeline for missing the h264parse plugin, run the following command to install it:  
Cookies help us deliver our services. By using our services, you agree to our use of cookies.