GNOME Bugzilla – Bug 458274
gst-launch manual page: Network Streaming example broken
Last modified: 2007-08-20 17:51:15 UTC
In the man page for gst-launch there is an example for network streaming with RTP. These are the pipelines: $ gst-launch v4l2src ! video/x-raw-yuv,width=128,height=96,format='(fourcc)'UYVY ! ffenc_h263 ! video/x-h263 ! rtph263ppay pt=96 ! udpsink host=192.168.1.1 port=5000 sync=false $ gst-launch udpsrc port=5000 ! application/x-rtp, clock-rate=90000,payload=96 ! rtph263pdepay queue-delay=0 ! ffdec_h263 ! xvimagesink It seems to be a mismatch between h263 and h263p encoder/decoder payloader/depayloader.
It actually is fine. rtph263ppay can also payload plain H263 encoded data. ffdec_h263 is actually both an H263 and H263+ decoder as the latter is a superset of the former. There should be a colorspace converter before the encoder, though. * tools/gst-launch.1.in: Add colorspace to example pipeline. Fixes #458274.