0

I have to implement webRTC solution which allows phone calls via browser based on asterisk and node.js (video and audio calls are ok thanks to opensource project).

How can I do this?

Jason Aller
  • 3,541
  • 28
  • 38
  • 38

3 Answers3

1

check this project https://github.com/js-platform/node-webrtc

But i have inform you that webrtc is in early beta stage, it is experemental technology.

So to do something in this field you have be sip and node.js guru and understand how to search info in web and deal with sockets.

arheops
  • 15,544
  • 1
  • 21
  • 27
  • just i need to have a combination bettewen webrtc and astersik in order to allow user make phone call via browser . in web the document is not also clear – bedoui_mouoifek Apr 03 '14 at 12:07
  • You can't use node.js and asterisk at same time. It is different servers. I am sorry, there are no documentation and it is now guru-class task. No way describe it in simple article. – arheops Apr 03 '14 at 15:31
  • so ignore node.js at this time we talk about asterisk in webrTC (Html5 and javascript) something like this maybe will be helpful ? http://sipml5.org/ – bedoui_mouoifek Apr 03 '14 at 17:56
  • In order to make a PSTN call via WEBRTC ? Are there any opensources – Hanu Apr 04 '14 at 10:38
  • Sure.Asterisk can do webrtc and can call PSTN. But it still guru-class task. – arheops Apr 04 '14 at 10:44
1

I've made a prof of concept some time ago and was really easy, well, I had to hack some part of asterisk because of SDP.

Start deploying a Asterisk Server and then use for instance http://sipml5.org/ to connect to or asterisk server, deploying it using node.js. (That was I have done).

pmarques
  • 31
  • 1
  • thanks sir do you think that this guide is helpful i was tried it but no success http://ensiwiki.ensimag.fr/index.php/WebRTC_and_the_question_of_interoperability_with_SIP – bedoui_mouoifek Apr 07 '14 at 11:36
0

Nowadays Asterisk support WebRTC quite out of the box.
I followed this is the guides:
https://wiki.asterisk.org/wiki/display/AST/Asterisk+WebRTC+Support
https://wiki.asterisk.org/wiki/display/AST/WebRTC+tutorial+using+SIPML5
to configure the server.
On the client side there's just a light web page with jssip
That's the working demo I realized: clic2call.demo.sociale.it