it is possible to stream video with SignalR?

后端 未结 3 924
难免孤独
难免孤独 2020-12-13 10:06

Well I\'m trying to perform a proof about video streaming, I\'m working with asp.net c#. I\'m kind of lost, you have any idea or suggestion?

3条回答
  •  -上瘾入骨i
    2020-12-13 10:45

    No, SignalR is based on standards (WebSockets, LongPolling, ForeverFrame, etc.) which only stream text based JSON messages. You're probably better off looking into the WebRTC specification. Now, you could bring these two technologies together by sending control messages with SignalR that triggers some JavaScript that changes the WebRTC feed that the browser is currently showing.

提交回复
热议问题