I tried the following basic pipelines to play audio over a network:
Server:
gst-launch-0.10 -v audiotestsrc ! udpsink host=127.0.0.1 port=1234
Client:
gst-launch-0.10 -v udpsrc port=1234 ! fakesink dump=1
But I get no output, although the pipeline gets set to PLAYING state.
I looked at other questions such as this one : Webcam streaming using gstreamer over UDP Although it's the same pipeline there too, it doesn't work for me. What am i doing wrong?