首先我尝试了wrtc(https://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 symlink).我注意到里面有一个src目录(/usr/include/node/src/node.h).
我试过的其他事情:
https://github.com/js-platform/node-webrtc
https://github.com/Raynos/peer-connection
基本上,我正在尝试使用已在我的机器上编译的PeerConnection客户端来处理nodejs.
任何帮助将不胜感激