对于静态文件来说,RTSP 相对于纯 HTTP 有何优势?

发布于 2024-10-16 09:06:41 字数 142 浏览 6 评论 0原文

使用 RTSP 提供静态(非实时流)TS 视频有什么优势吗?

HTTP 看起来更适合此目的,并且在客户端软件中触发的错误更少。搜索效果更好,快进播放效果更流畅。它也不需要任何索引。

从 RTSP 迁移到纯 HTTP 时是否存在任何陷阱?

Is there any advantage of using RTSP for serving static (not live stream) TS videos?

HTTP looks like better for this purpose and triggers less bugs in client software. Seeking works better, fast-forward playback works smoother. It also does not require any indexes.

Are there any pitfalls when migrating from RTSP to plain HTTP?

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

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

发布评论

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

评论(3

久夏青 2024-10-23 09:06:41

使用 HTTP 进行媒体流传输虽然由 Apple iOS 产品赞助,但可能不如 RTSP 标准。 HTTP流的实现有很多,其问题主要是:

  • 无法PAUSE;
  • 字节范围查找。

除此之外,HTTP 更好还有很多原因。

请参阅本文

Usage of HTTP for media streaming, while sponsored by Apple iOS products, is probably not as standard as RTSP. There are many HTTP streaming implementations, whose issues are mainly:

  • inability to PAUSE;
  • byte-range seeks.

Other than this, HTTP is better for many reasons.

See this article.

逐鹿 2024-10-23 09:06:41

HTTP“流”服务器(在大多数情况下)将使用 TCP 作为其网络传输,RTSP 服务器通常提供基于 UDP 的 RTP,这更适合多媒体流,其中可以容忍一些错误/数据包丢失具有较低延迟和较少网络开销的优点。

HTTP "streaming" servers will (in most cases) use TCP as their network transport, RTSP servers usually offer RTP over UDP which is more suited to multimedia streaming where some errors/packet loss can be tolerated with the benefit of lower latency and less network overheads.

江湖彼岸 2024-10-23 09:06:41

此外,由于 RTSP 是基于 UDP 的,因此可以在 LAN 内使用多播/广播。这对于电视流非常有用,因为您将使用更少的带宽。

Also, as RTSP it is over UDP, it can be used inside LAN with multicast/broadcast. This is quite useful for TV streams as you will use less bandwidth.

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