Reputation: 525
I m new to here so maybe my question is also looks silly. If so, please teach me then I will very appreciate for it.
question:
I m going to build webrtc android client for my kamilio/freeswitch. So I've built webrtc for android and tested AppRTC demo and made video call. What I want to know is can I integrate this demo with my own kamilio/freeswitch?
Hope to hearing from you soon.
Regards
Upvotes: 1
Views: 1067
Reputation: 402
Definitely yes. Take a look at FreeSWITCH VerTo protocol which is specifically designed for WebRTC : https://freeswitch.org/confluence/display/FREESWITCH/mod_verto.
Also you can check out this demo on google play, where this protocol implemented with native Android WebRTC SDK: https://play.google.com/store/apps/details?id=xyz.vertoandroid.vertoandroidlibdemo. (ahem, shameless plug, sorry).
Upvotes: 0
Reputation: 1665
Yes, of course. From the server point of view, WebRTC is WebRTC regardless if you are running it from app or from browser. Just make that your client is using SIP (clear SIP or SIP over websocket as described in RFC 7118 since this is the most popular signaling protocol supported also by Kamailio/FreeSWITCH.
Upvotes: 1