diff -r 71e347f905f2 -r 4a7fac7dd34a gst_plugins_base/gst/gdp/README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gst_plugins_base/gst/gdp/README Fri Apr 16 15:15:52 2010 +0300 @@ -0,0 +1,22 @@ +Sample pipelines: +- replacing tcpserversink protocol=gdp with gdppay ! tcpserversink: + - raw audio: + - server: + gst-launch -v audiotestsrc ! gdppay version=0.2 ! tcpserversink + - client: + gst-launch -v tcpclientsrc protocol=gdp ! alsasink sync=FALSE + + - vorbis packets: + - server: + gst-launch -v audiotestsrc ! audioconvert ! vorbisenc ! gdppay version=0.2 ! tcpserversink + - client: + gst-launch -v tcpclientsrc protocol=gdp ! vorbisdec ! audioconvert ! alsasink sync=FALSE + + - ogg packets: + - server: + gst-launch -v audiotestsrc ! audioconvert ! vorbisenc ! oggmux ! gdppay version=0.2 ! tcpserversink + - client: + gst-launch -v tcpclientsrc protocol=gdp ! oggdemux ! vorbisdec ! audioconvert ! alsasink sync=FALSE + + In all the client pipelines, tcpclientsrc protocol=gdp can be replaced with + tcpclientsrc ! gdpdepay