0

我想在 C# 应用程序和浏览器之间建立视频流。我使用 Websockets 进行通信。视频源是网络摄像头。

我可以请求单个 PNG 帧,但速度很慢。

websocket 服务器(棘轮)是基于消息的,但是否可以通过使用某种缓冲区来使用 VP9 压缩或类似的东西?

4

1 回答 1

0

WebSockets implement a messaging protocol over sockets. This is not desirable for video. I think a better suited technology for this is WebRTC.

于 2013-07-25T01:08:14.897 回答