Network streaming using Gstreamer

安稳与你 提交于 2019-12-14 02:16:51

问题


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?

来源:https://stackoverflow.com/questions/15492591/network-streaming-using-gstreamer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!