通过 TCP 的视频流

发布于 2024-11-26 03:21:25 字数 115 浏览 1 评论 0原文

我需要将存储在服务器上的视频数据流式传输到浏览器上的视频播放器。我可以使用 TCP 连接来获取视频文件的一部分作为字节数组。

我如何使用 TCP 逐段检索视频,同时流式传输已在视频播放器上检索的部分。

I need to stream video data which is stored on a server on to a video player on my browser. I can use a TCP connection to get a piece of the video file as a byte array.

How can I go about retrieving the video piece by piece using TCP while streaming the portion that is already retrieved on the video player.

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

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

发布评论

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

评论(2

甜心 2024-12-03 03:21:26

准备好实现 HTTP Live StreamingRTP(通过 UDP)。不要重新发明轮子。如果您仍然想自己编写代码 - 实现用于此任务的已知协议,请勿创建新协议。

Get a ready implementation of HTTP Live Streaming or RTP (which is over UDP), for example. Don't reinvent the wheel. If you still want to write the code yourself - implement known protocols used for this task, don't create new ones.

℡寂寞咖啡 2024-12-03 03:21:25

查看 VLC 的一些流媒体选项(请参阅 videolan.org)。如果您还有其他想做的事情,您确实不想手动实现视频流协议。

Take a look at some of the options VLC has for streaming (see videolan.org). You realy don't wat to implement a video streaming protocol by hand, not if you have other things you'd like to do with your life.

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