blob: 6b84afc4bef9940183403a8d140418d69240f39e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|