From: Thomas Vander Stichele Date: Mon, 21 Aug 2006 19:04:14 +0000 (+0000) Subject: adding a README X-Git-Tag: 1.19.3~507^2~15111 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab0f3921f59003691237bca80cec8cd2fe3945ed;p=platform%2Fupstream%2Fgstreamer.git adding a README Original commit message from CVS: adding a README --- diff --git a/gst/gdp/README b/gst/gdp/README new file mode 100644 index 0000000000..6b84afc4be --- /dev/null +++ b/gst/gdp/README @@ -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