RTMP:使用Python检查流是否在线

发布于 2024-10-05 00:26:54 字数 154 浏览 2 评论 0原文

我有几个 Flash 流,我只想显示活动/实时/在线流。有人可以提供可以检查流状态的示例代码吗?或者指出我可以在哪里获取它(我认为Red5和RTMPy应该有这个,但我完全没有任何RTMP经验;还有RTMP规范,但wiki说它不完整)?我的目标语言是 Python,但任何语言的代码都会有所帮助。

I have several Flash streams and I want to display only active/live/online streams. Can someone provide sample code that can check status of stream? or point out where I can grab it (I think Red5 and RTMPy should have this, but I completely don't have any experience with RTMP; there is also RTMP specification, but wiki says it is incomplete)? My target language is Python, but code in any language will be helpful.

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

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

发布评论

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

评论(1

最舍不得你 2024-10-12 00:26:54

如果连接丢失或连接失败,下面的代码将打印错误消息。

from twisted.internet import reactor
from rtmpy.client import ClientFactory

reactor.connectTCP('localhost', 1935, ClientFactory())
reactor.run()

In case of connection lost or connection fail the code below will print error message.

from twisted.internet import reactor
from rtmpy.client import ClientFactory

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