如何知道服务器使用的是RED5还是FMS?

发布于 2024-12-12 05:03:44 字数 161 浏览 0 评论 0原文

我正在开发一个网站,其中使用由闪存组成的网络摄像头组件来传输视频。在托管方面,有一个 Flash 服务器设置(通过 rtmp 协议)来托管流视频。我需要知道此过程中使用的是 RED5 还是 FMS。请问我怎么知道?我对视频流领域不是很了解,所以不确定我的解释是否清楚。如果我需要解释其他内容,请告诉我。谢谢。

I am working on a site where a webcam component, made up of flash is being used to stream video. On hosting, there is a flash server setup(via rtmp protocol) which hosts the streamed video. I need to know whether RED5 or FMS is being used for this process. How can I know please? I am not very knowledgeable in video streaming area, so not sure, whether i am clear with my explanation. Please let me know if i need to explain anything else. Thanks.

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

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

发布评论

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

评论(1

舟遥客 2024-12-19 05:03:44

Red5和FMS都在其连接成功对象中包含信息,使您可以知道您连接到哪种服务器类型;例如,以下是 red5 发送的信息:


NetConnection.onStatus: 
  mode = 1
  fmsVer = RED5/1,0,0,0
  capabilities = 31
  data = 
      version = 4,0,0,1121
      type = red5

  description = Connection succeeded.
  code = NetConnection.Connect.Success
  level = status

您最感兴趣的属性是“fmsVer”。

Both Red5 and FMS contain information in their connection success object which allows you to know which server type you are connected to; For example, here is the information sent by red5:


NetConnection.onStatus: 
  mode = 1
  fmsVer = RED5/1,0,0,0
  capabilities = 31
  data = 
      version = 4,0,0,1121
      type = red5

  description = Connection succeeded.
  code = NetConnection.Connect.Success
  level = status

The property that you'd be most interested in is "fmsVer".

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