README
1Sample pipelines:
2- replacing tcpserversink protocol=gdp with gdppay ! tcpserversink:
3 - raw audio:
4 - server:
5 gst-launch-1.0 -v audiotestsrc ! gdppay version=0.2 ! tcpserversink
6 - client:
7 gst-launch-1.0 -v tcpclientsrc protocol=gdp ! alsasink sync=FALSE
8
9 - vorbis packets:
10 - server:
11 gst-launch-1.0 -v audiotestsrc ! audioconvert ! vorbisenc ! gdppay version=0.2 ! tcpserversink
12 - client:
13 gst-launch-1.0 -v tcpclientsrc protocol=gdp ! vorbisdec ! audioconvert ! alsasink sync=FALSE
14
15 - ogg packets:
16 - server:
17 gst-launch-1.0 -v audiotestsrc ! audioconvert ! vorbisenc ! oggmux ! gdppay version=0.2 ! tcpserversink
18 - client:
19 gst-launch-1.0 -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
23