Gstreamer Gstreamer中通过UDP(RTP)远程播放MP3

Posted Xiaodong‘s Blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Gstreamer Gstreamer中通过UDP(RTP)远程播放MP3相关的知识,希望对你有一定的参考价值。

是通过gst-launch进行测试的命令。

发送端:

[email protected]:~$ gst-launch-1.0 -v filesrc location = bg.mp3 ! decodebin ! audioconvert ! rtpL16pay ! udpsink host=127.0.0.1 port=5000

接收端:

[email protected]:~$ gst-launch-1.0 udpsrc port=5000 caps=application/x-rtp, media=(string)audio, clock-rate=(int)44100, channels=(int)2 ! rtpjitterbuffer latency=400 ! rtpL16depay ! pulsesink

 

以上是关于Gstreamer Gstreamer中通过UDP(RTP)远程播放MP3的主要内容,如果未能解决你的问题,请参考以下文章

gstreamer让playbin能够播放rtp over udp流数据

带有 Gstreamer 流的 OpenCV 具有延迟、缓慢和伪影

将 GStreamer 管道编码并复用为 MPEG-TS

通过 gstreamer udpsink 流式传输 h.264 时如何解决图像问题

图像数据作为 gstreamer 中的源 [关闭]

gstreamer分析-rtp流的接收