tizen 2.3 release
[framework/multimedia/gst-plugins-base0.10.git] / gst / gdp / README
1 Sample pipelines:
2 - replacing tcpserversink protocol=gdp with gdppay ! tcpserversink:
3   - raw audio:
4     - server:
5       gst-launch -v audiotestsrc ! gdppay version=0.2 ! tcpserversink
6     - client:
7       gst-launch -v tcpclientsrc protocol=gdp ! alsasink sync=FALSE
8
9   - vorbis packets:
10     - server:
11       gst-launch -v audiotestsrc ! audioconvert ! vorbisenc ! gdppay version=0.2 ! tcpserversink
12     - client:
13       gst-launch -v tcpclientsrc protocol=gdp ! vorbisdec ! audioconvert ! alsasink sync=FALSE
14
15   - ogg packets:
16     - server:
17       gst-launch -v audiotestsrc ! audioconvert ! vorbisenc ! oggmux ! gdppay version=0.2 ! tcpserversink
18     - client:
19       gst-launch -v tcpclientsrc protocol=gdp ! oggdemux ! vorbisdec ! audioconvert ! alsasink sync=FALSE
20
21   In all the client pipelines, tcpclientsrc protocol=gdp can be replaced with
22   tcpclientsrc ! gdpdepay