使用多个 Streaming 时如何获取 Stream 名称?

发布于 2024-11-15 04:55:29 字数 260 浏览 3 评论 0原文

我从客户端向服务器发布实时流。有很多客户端(很多流)。

现在我想获取该 Streaming 的详细信息。所以我使用了日志字段。该字段返回一些值,但我没有得到流名称。我使用 wowza 服务器进行流媒体播放。

for(String s : WMSLoggerIDs.FD_ALL) {
    System.out.println(s+":      "+WMSLoggerFactory.getGlobalLogValue(s));
} 

I publish a live Stream from client to server. There are many clients (many Streams).

Now I want to get the details of that Streaming. So I used Log fields. That fields return some value but I didn't get the stream name. I use the wowza server for streaming.

for(String s : WMSLoggerIDs.FD_ALL) {
    System.out.println(s+":      "+WMSLoggerFactory.getGlobalLogValue(s));
} 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

她如夕阳 2024-11-22 04:55:29
    public void play(IClient client, RequestFunction function, AMFDataList params)
        {
           System.out.println(getParamString(params, PARAM1)); 
        }

如果您使用播放函数并传递这些参数,您将获得流名称

    public void play(IClient client, RequestFunction function, AMFDataList params)
        {
           System.out.println(getParamString(params, PARAM1)); 
        }

If You use the play function and passing these arguments ,you will get the Stream Name

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文