Thomas Vander Stichele | ab0f392 | 2006-08-21 19:04:14 +0000 | [diff] [blame] | 1 | Sample pipelines: |
| 2 | - replacing tcpserversink protocol=gdp with gdppay ! tcpserversink: |
| 3 | - raw audio: |
| 4 | - server: |
Vineeth TM | 7c42ba9 | 2015-12-14 11:09:46 +0900 | [diff] [blame] | 5 | gst-launch-1.0 -v audiotestsrc ! gdppay version=0.2 ! tcpserversink |
Thomas Vander Stichele | ab0f392 | 2006-08-21 19:04:14 +0000 | [diff] [blame] | 6 | - client: |
Vineeth TM | 7c42ba9 | 2015-12-14 11:09:46 +0900 | [diff] [blame] | 7 | gst-launch-1.0 -v tcpclientsrc protocol=gdp ! alsasink sync=FALSE |
Thomas Vander Stichele | ab0f392 | 2006-08-21 19:04:14 +0000 | [diff] [blame] | 8 | |
| 9 | - vorbis packets: |
| 10 | - server: |
Vineeth TM | 7c42ba9 | 2015-12-14 11:09:46 +0900 | [diff] [blame] | 11 | gst-launch-1.0 -v audiotestsrc ! audioconvert ! vorbisenc ! gdppay version=0.2 ! tcpserversink |
Thomas Vander Stichele | ab0f392 | 2006-08-21 19:04:14 +0000 | [diff] [blame] | 12 | - client: |
Vineeth TM | 7c42ba9 | 2015-12-14 11:09:46 +0900 | [diff] [blame] | 13 | gst-launch-1.0 -v tcpclientsrc protocol=gdp ! vorbisdec ! audioconvert ! alsasink sync=FALSE |
Thomas Vander Stichele | ab0f392 | 2006-08-21 19:04:14 +0000 | [diff] [blame] | 14 | |
| 15 | - ogg packets: |
| 16 | - server: |
Vineeth TM | 7c42ba9 | 2015-12-14 11:09:46 +0900 | [diff] [blame] | 17 | gst-launch-1.0 -v audiotestsrc ! audioconvert ! vorbisenc ! oggmux ! gdppay version=0.2 ! tcpserversink |
Thomas Vander Stichele | ab0f392 | 2006-08-21 19:04:14 +0000 | [diff] [blame] | 18 | - client: |
Vineeth TM | 7c42ba9 | 2015-12-14 11:09:46 +0900 | [diff] [blame] | 19 | gst-launch-1.0 -v tcpclientsrc protocol=gdp ! oggdemux ! vorbisdec ! audioconvert ! alsasink sync=FALSE |
Thomas Vander Stichele | ab0f392 | 2006-08-21 19:04:14 +0000 | [diff] [blame] | 20 | |
| 21 | In all the client pipelines, tcpclientsrc protocol=gdp can be replaced with |
| 22 | tcpclientsrc ! gdpdepay |