WebRTC PeerConnection客户端nodejs

时间:2014-07-16 10:19:41

标签: node.js ubuntu webrtc

我试图让ubuntu上的WebRTC PeerConnection客户端与nodejs一起工作。

首先我尝试wrtchttps://github.com/js-platform/node-webrtc)。我设法运行客户端,但我似乎无法获取数据流。我注意到这个模块上的RTCPeerConnection / PeerConnection具有与在chrome中运行时不同的功能/实现。所以我去寻找另一个nodejs PeerConnection。

我试过了: https://github.com/Rantanen/node-peerconnection

已编译的版本会抛出错误:_ZN6webrtc17BitrateController23CreateBitrateControllerEv

我认为要让它正常工作,我必须在我的机器上编译peerconnection。

我已关注http://www.webrtc.org/reference/getting-started并在目录中编译webrtc:/home/myuser/.webrtc/。 我有/home/myuser/.webrtc/trunk/out/(Debug/Release)。 我有peerconnection_client可执行文件。

接下来我克隆了:https://github.com/santiago/node-peerconnection(另一个实现,带有make文件)。 当我试图运行makefile时(make WEBRTC_ROOT_PATH=/home/myuser/.webrtc/trunk) 我收到错误:

src/node_peer_connection_client.h:9:18: fatal error: node.h: No such file or directory
 include <node.h>

我有/usr/include/nodejs(和/usr/include/node符号链接)。我注意到里面有一个src dir(/usr/include/node/src/node.h)。

我试过的其他事情:

https://github.com/js-platform/node-webrtc

https://github.com/Raynos/peer-connection

基本上,我试图让我的机器上编译的PeerConnection客户端与nodejs一起使用。

任何帮助将不胜感激;) 感谢

2 个答案:

答案 0 :(得分:1)

这看起来很有希望:https://github.com/vmolsa/webrtc-native

用法示例: https://github.com/vmolsa/webrtc-native/blob/master/examples/node2browser/index.js

API:

WebRTC.RTCPeerConnection

WebRTC.RTCIceCandidate

WebRTC.RTCSessionDescription

WebRTC.RTCDataChannel

WebRTC.MediaStream

WebRTC.MediaStreamTrack

WebRTC.getUserMedia

WebRTC.getSources

答案 1 :(得分:0)

node-webrtc假设是暂时的好选择,项目还活着。如果您有任何问题,请在那里发布问题。