I am searching for an WebRTC server app (open source) that I can run on my webserver. All these WebRTC guys want me to use their pay-for-use web services. I found only EasyRTC that sort of worked https://github.com/priologic/easyrtc Can someone suggest Node.js or PHP (with libevent) implementations of WebRTC server apps?
Ask HN: Skype, but properly peer-to-peer?
21–30 of 80 posts
Re: Ask HN: Skype, but properly peer-to-peer?
#22Re: Ask HN: Skype, but properly peer-to-peer?
#23Re: Ask HN: Skype, but properly peer-to-peer?
#24This should work with WebRTC ( http://www.webrtc.org/ ) using the reference app: https://apprtc.appspot.com/ It should enable you to connect 2 browsers (e.g. Chrome and Firefox), all you need is to transmit the ID of the chat ("r" parameter from the chat URL you will get) to the peer, or the full URL. It keeps amazing me that we do not have simple JS solutions for this, when projects like Chatroulette can be built in…
Re: Ask HN: Skype, but properly peer-to-peer?
#25Video, doc sharing, chat, multiple people sharing all that or splitting up into groups or pairs - all by clicking around a map.
Re: Ask HN: Skype, but properly peer-to-peer?
#26Re: Ask HN: Skype, but properly peer-to-peer?
#27Mumble is the only one that springs to mind: http://mumble.sourceforge.net/ Its designed more for chat rooms but may be suitable.
Mumble works very well, but: - It's not real p2p, it needs a server somewhere. OP can install one at home or they can use a public one, but it's required (and if you use a public server, you lose some privacy) - Mumble only does Audio, no Video. If you can live with those, mumble is the most straightforward Open Source voip solution to use, and I can't recommend it enough (been using it with my relatives, me on Linux…
Re: Ask HN: Skype, but properly peer-to-peer?
#28I am searching for an WebRTC server app (open source) that I can run on my webserver. All these WebRTC guys want me to use their pay-for-use web services. I found only EasyRTC that sort of worked https://github.com/priologic/easyrtc Can someone suggest Node.js or PHP (with libevent) implementations of WebRTC server apps?
Re: Ask HN: Skype, but properly peer-to-peer?
#29http://simplewebrtc.com/demo.html Webrtc is here with p2p transmission of the camera + microphone (or files of course). I think it's time for all of us to move to p2p solutions that will come.
Actually it supports sending any byte stream accross. It amazes me nobody seem to have built a peer2peer network out of it yet. Seems like a shot for open goal.
Re: Ask HN: Skype, but properly peer-to-peer?
#30http://simplewebrtc.com/demo.html Webrtc is here with p2p transmission of the camera + microphone (or files of course). I think it's time for all of us to move to p2p solutions that will come.
Actually it supports sending any byte stream accross. It amazes me nobody seem to have built a peer2peer network out of it yet. Seems like a shot for open goal.