2

是否可以使用 WebRTC 从服务器(不是客户端到客户端)流式传输实时音频?我正在查看示例和教程,但我还没有看到类似的东西。

4

2 回答 2

1

Take a look at the native API documentation at webrtc.org/reference/native-apis.

This provides a sample C++ application.

于 2013-07-30T08:30:13.793 回答
1

WebRTC was created to build peer to peer applications, and you are not forced to create only client-to-client connections. You can have a look at my answer to this other question.

Although, if you want a real streaming server, WebRTC does not use the typical streaming protocols to allow you to broadcast a stream, and ignore the applications that are indeed "listening" for your data.

于 2013-07-30T08:52:04.860 回答