首页 > 代码库 > 【Gstreamer】 Gstreamer中通过UDP(RTP)远程播放MP3

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

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

发送端:

daniel@ubuntu:~$ gst-launch-1.0 -v filesrc location = bg.mp3 ! decodebin ! audioconvert ! rtpL16pay ! udpsink host=127.0.0.1 port=5000

接收端:

daniel@ubuntu:~$ 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