当多个接口启动时,gstreamer客户端多播UDP不会连接

时间:2014-03-06 18:18:19

标签: routing udp gstreamer h.264 multicast

我正在使用gstreamer连接到流式视频,该视频是原始UDP多播上的原始H.264基本流。我发现当我 eth0时,它连接得很好:

gst-launch udpsrc uri=udp://239.255.43.43:4444 ! h264parse ! ffdec_h264 ! xvimagesink sync=false

然而,当我提出wlan0eth0时,我遇到了问题。我使用wlan0作为我的主要互联网连接,eth0位于流媒体视频服务器所在的本地局域网上。我有wlan0作为默认路由:

host$ route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.0.1     0.0.0.0         UG    0      0        0 wlan0

当我尝试连接此配置时,gstreamer只是坐在select()呼叫上等待连接。

1 个答案:

答案 0 :(得分:7)

解决方案是告诉gstreamer用于接收多播UDP流的接口:

gst-launch udpsrc multicast-iface="eth0" uri=udp://239.255.43.43:4444 ! h264parse ! ffdec_h264 ! xvimagesink sync=false