1

Following tutorial of original page in Network Streaming

There is the command:

gst-launch-1.0 v4l2src  \
! video/x-raw-yuv,width=128,height=96,format='(fourcc)'UYVY \
! videoconvert ! ffenc_h263 ! video/x-h263 ! rtph263ppay pt=96 \
! udpsink host=192.168.1.1 port=5000 sync=false

Resulting:

(gst-launch-1.0:2616): GStreamer-WARNING **: 10:02:12.327: 0.10-style raw video caps are being created. Should be video/x-raw,format=(string).. now.
WARNING: erroneous pipeline: could not parse caps "video/x-raw-yuv,width=128,height=96,format=(fourcc)UYVY"

And command doesn't get executed. Anyone knows why it doesn't get executed?

pedro_bb7
  • 1,601
  • 3
  • 12
  • 28

1 Answers1

0

Typically, caps are provided as follows:

gst-launch-1.0 v4l2src  \
! video/x-raw-yuv, width=128, height=96,format=UYVY \
! fakesink

Debug using a small pipeline; adding one element at a time and terminating it with fakesink.

Pe Dro
  • 2,651
  • 3
  • 24
  • 44