Video chatting in Java Servlet

时间:2015-06-25 19:03:31

标签: java servlets webrtc

I am trying to find a way to transmit a user's video+audio stream(captured by client side webrtc and streamed to a html5 video element)to another client in the context.Is there a way to accomplish this like getting the bob's stream(request.getInputStream)and write that bytes to alice's response output stream and vice versa so that bidirectional streaming is possible?

1 个答案:

答案 0 :(得分:0)

我不知道我是否真正理解你想要达到的目标,但让我试试。

  1. UserA'getMediaUsers',可以访问摄像头和音频源 (UserB也是如此)
  2. 您希望在UserA和UserB之间发送这些流,以便他们可以互相看到和听到。
  3. 现在,webRTC与流捕获无关。但它与在UserA和UserB之间流式传输p2p无关,而无需中间服务器(至少只要实现初始连接)。

    请参见此处的示例:https://apprtc.appspot.com/。在该示例中,许多用户进入房间并彼此看到和听到。如果您想实现聊天轮盘,您可以使用此功能并执行此操作。