我正在尝试通过test-mp4
使用gst-rtsp-server
示例创建RTSP服务器。该示例有效,但我需要将基本的8554端口更改为另一个。
我检查了test-record.c
示例,我们可以看到:
#define DEFAULT_RTSP_PORT "8554"
static char *port = (char *) DEFAULT_RTSP_PORT;
...
static GOptionEntry entries[] = {
{"port", 'p', 0, G_OPTION_ARG_STRING, &port,
"Port to listen on (default: " DEFAULT_RTSP_PORT ")", "PORT"},
{NULL}
};
optctx = g_option_context_new ("<launch line> - Test RTSP Server, Launch\n\n"
"Example: \"( decodebin name=depay0 ! autovideosink )\"");
g_option_context_add_main_entries (optctx, entries, NULL);
但最后我无法理解如何在test-mp4
示例中更改端口。如果你告诉我解决方案的方法,我将不胜感激。提前致谢!
最后我找到了解决方案:有必要添加以下行:
.....
char *port = (char *) argv[2]; //argv[<X>] is a port - an input argument
g_object_set (server, "service", port, NULL);
....