我试图在本地主机上测试udp流,但它没有显示任何内容:
视频测试(或audiotestsrc) -> udpsink (端口: 5078,主机: 127.0.0.1)
以下是代码:
console_out_inf("TESTING", "Starting work with test elements");
gint port = 5078;
// TEST PIPELINE OUT
gst_bin_add_many(GST_BIN(GSD->pipetest_out), GSD->testsrc, GSD->udpsink, NULL);
gchar* host = "127.0.0.1";
g_object_set(GSD->udpsink, "port", port, NULL);
g_object_set(GSD->udpsink, "host", host, NULL);
if (!gst_element_link(GSD->testsrc, GSD->udpsink))
console_out_bad("STREAMING", "Error linking test udp elements -- SEND");
else
console_out_yes("STREAMING", "Correctly linked test udp elements -- SEND");
// TEST PIPELINE IN
gst_bin_add_many(GST_BIN(GSD->pipetest_in), GSD->udpsrc, GSD->autovideosink, NULL);
gst_element_set_state(GSD->udpsrc, GST_STATE_NULL);
g_object_set(GSD->udpsrc, "port", port, NULL);
if (!gst_element_link(GSD->udpsrc, GSD->autovideosink))
console_out_bad("STREAMING", "Error linking test udp elements -- RECEIVE");
else
console_out_yes("STREAMING", "Correctly linked test udp elements -- RECEIVE");
// PLAY TEST PIPELINE OUT
GstStateChangeReturn ret1;
ret1 = gst_element_set_state(GSD->pipetest_out, GST_STATE_PLAYING);
if (ret1 == GST_STATE_CHANGE_FAILURE)
console_out_bad("TESTING", "Failed playing pipetest out");
else
console_out_yes("TESTING", "Correctly played pipetest out");
// PLAY TEST PIPELINE IN
GstStateChangeReturn ret2;
ret2 = gst_element_set_state(GSD->pipetest_in, GST_STATE_PLAYING);
if (ret2 == GST_STATE_CHANGE_FAILURE)
console_out_bad("TESTING", "Failed playing pipetest in");
else
console_out_yes("TESTING", "Correctly played pipetest in");
// PRINT PIPELINES
GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN(GSD->pipetest_out), GST_DEBUG_GRAPH_SHOW_ALL, "pipetest_out");
GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN(GSD->pipetest_in), GST_DEBUG_GRAPH_SHOW_ALL, "pipetest_in");这是“我自己的控制台输出”:
编辑:不再相关了!一切都很好,管道的构建是正确的,但是
管道输出: videotestsrc -> udpsink (主机:127.0.0.1,端口: 5078)
管道IN: udpsrc (端口: 5078) ->自动视频链路
自动录像链接不显示任何东西!通过检查netstat -a,该端口上没有显示连接。
附加信息:
有人知道我做错了什么吗?
发布于 2016-08-08 16:15:20
这段代码看起来不错,但与您发布的控制台输出无关。
试着用命令行gst- testing一段一段地测试您的管道:
gst-launch-1.0 -e -v videotestsrc ! udpsink host="127.0.01"首先连接到fakesink,然后在udp接收器中交换,一旦在命令行中让它在代码中镜像命令。
尝试使用host="localhost“或host="192.168.0.1”--我不记得了,但我认为udpsink可能无法发送回环
https://stackoverflow.com/questions/38833677
复制相似问题