ios developer
ios developer

Reputation: 3473

Use webrtc or Peer to Peer for video calling IOS and android

I want to create the application with Webrtc which will work on website, mobile ios application and android application.

I had found this link :-http://xsockets.net/api/net-c/custom-webrtc-controller

How do I able to create the webrtc in ios application. Is there any way? Please help me.

Upvotes: 12

Views: 11053

Answers (3)

VAdaihiep
VAdaihiep

Reputation: 531

I've spend 2 days to research about WebRTC for mobile. I try to install webRTC for Android (follow webrtc.org) but it's too complicated. I just found 2 awesome project:

For server: https://github.com/pchab/ProjectRTC

For Android Client: https://github.com/pchab/AndroidRTC

Less than 15 minutes to install and it worked well.

About Client iOS, I think you should try gp-coder suggestion, use https://github.com/gandg/webrtc-ios.

Upvotes: 7

gp-coder
gp-coder

Reputation: 1100

I have been working in this space for the past few months now and webrtc on iOS is not easy. To help this problem I have added a github repo with a working example of and iOS app using webrtc.

https://github.com/gandg/webrtc-ios

The site references the google code site as well, so it should be a helpful starting point.

Upvotes: 9

Simon Lee
Simon Lee

Reputation: 170

OpenTok has a native iOS SDK on WebRTC, which should be a good place for you to look into.

Upvotes: 2

Related Questions