Difference between revisions of "Jetson Xavier NX/Gstreamer/Example Pipelines/Decoding"

From RidgeRun Developer Connection
Jump to: navigation, search
m
 
Line 1: Line 1:
 
<noinclude>
 
<noinclude>
{{JetsonXavierNX/Head|previous=Gstreamer/Example_Pipelines/Encoding|next=Gstreamer/Example_Pipelines/Streaming|keywords=gstreamer,gstreamer pipelines,H264 decoding,H265 decoding,OMX,V4L2,H265,H264,VP8, VP9 decoding|title=Jetson Xavier NX GStreamer example pipelines for H264 H265 VP8 and VP9 decoding|description=This page has the tested gstreamer example pipelines for H264, H265, VP8 and VP9 decoding on Jetson Xavier NX platform}}</noinclude>
+
{{JetsonXavierNX/Head|previous=Gstreamer/Example_Pipelines/Encoding|next=Gstreamer/Example_Pipelines/Streaming|metakeywords=gstreamer, gstreamer pipelines, H264 decoding, H265 decoding, OMX, V4L2, H265, H264, VP8, VP9 decoding|title=Jetson Xavier NX GStreamer example pipelines for H264 H265 VP8 and VP9 decoding|metadescription=This page has the tested gstreamer example pipelines for H264, H265, VP8 and VP9 decoding on Jetson Xavier NX platform}}</noinclude>
  
 
<!-----
 
<!-----

Latest revision as of 05:41, 8 February 2023



Previous: Gstreamer/Example_Pipelines/Encoding Index Next: Gstreamer/Example_Pipelines/Streaming


Nvidia-preferred-partner-badge-rgb-for-screen.png



Error something wrong.jpg Problems running the pipelines shown on this page?
Please see our GStreamer Debugging guide for help.

H.264

OMX

File Decoder

FILE=filename.mp4
gst-launch-1.0 filesrc location=$FILE ! qtdemux ! queue ! h264parse ! omxh264dec ! nvoverlaysink

V4L2

File Decoder

FILE=filename.mp4
gst-launch-1.0 filesrc location=$FILE ! qtdemux ! queue ! h264parse ! nvv4l2decoder ! nvoverlaysink

H.265

OMX

File Decoder

FILE=filename.mp4
gst-launch-1.0 filesrc location=$FILE ! qtdemux ! queue ! h265parse ! omxh265dec ! nvoverlaysink

V4L2

File Decoder

FILE=filename.mp4
gst-launch-1.0 filesrc location=$FILE ! qtdemux ! queue ! h265parse ! nvv4l2decoder ! nvoverlaysink

VP8

OMX

File Decoder

FILE=filename.mkv
gst-launch-1.0 filesrc location=$FILE ! matroskademux ! queue ! omxvp8dec ! nvoverlaysink

V4L2

File Decoder

FILE=filename.mkv
gst-launch-1.0 filesrc location=$FILE ! matroskademux ! queue ! nvv4l2decoder ! nvoverlaysink

VP9

OMX

File Decoder

FILE=filename.mkv
gst-launch-1.0 filesrc location=$FILE ! matroskademux ! queue ! omxvp9dec ! nvoverlaysink

V4L2

File Decoder

FILE=filename.mkv
gst-launch-1.0 filesrc location=$FILE ! matroskademux ! queue ! nvv4l2decoder ! nvoverlaysink

JPEG

FILE=test.jpg
gst-launch-1.0 filesrc location=$FILE ! jpegparse ! nvjpegdec ! nvoverlaysink


Previous: Gstreamer/Example_Pipelines/Encoding Index Next: Gstreamer/Example_Pipelines/Streaming