converting gst-0.10 pipeline to gst-1.0 pipeline

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

converting gst-0.10 pipeline to gst-1.0 pipeline

Jump to solution
675 Views
jamalmohiuddin
Contributor III

I have a i.MX6 board with display connected over LVDS. I got the following command running to get video streaming over IP using gstreamer-0.10

On IMX6

gst-launch -v udpsrc port=5004 ! application/x-rtp, payload=96 ! rtph264depay ! vpudec low-latency=true ! imxv4l2sink sync=false

On my PC:

C:\gstreamer\1.0\x86_64\bin\gst-launch-1.0.exe -v filesrc location=C:\\gstreamer\\1.0\\x86_64\\bin\\hash.h264 ! h264parse ! rtph264pay ! udpsink host=153.77.205.139 port=5004 sync=true

But when I shifted to gstreamer-1.0 , i am facing the issue, it is failing when I am trying to stream:

gst-launch-1.0 -v udpsrc port=5004 ! application/x-rtp, payload=96 ! rtph264 depay ! imxvpudec ! imxipuvideosink sync=false

Can you please help in converting gstreamer-0.10 pipeline to gstreamer-1.0

Labels (4)
1 Solution
505 Views
jamalmohiuddin
Contributor III

Ok. I got the following pipeline working. It may help someone.

gst-launch-1.0 -vvv udpsrc port=5004 ! application/x-rtp, payload=96 ! rtph2 64depay ! h264parse ! imxvpudec ! imxipuvideosink sync=false

View solution in original post

1 Reply
506 Views
jamalmohiuddin
Contributor III

Ok. I got the following pipeline working. It may help someone.

gst-launch-1.0 -vvv udpsrc port=5004 ! application/x-rtp, payload=96 ! rtph2 64depay ! h264parse ! imxvpudec ! imxipuvideosink sync=false