Rails Integrate with Webrtc

Hi All,

I need to implement video chat function in my rails application. Could anyone tell how will do that using Webrtc .

I’d recommend you not to re-invent the wheel and use bbb or appear.in or talky

I wrote this about it.

http://www.toptal.com/ruby-on-rails/a-year-with-webrtc-lessons-in-startup-engineering

We have a pretty nice Ruby server-side client and I’ve published a Rails application that is a little group-wise video call and text chat app. It runs on Heroku so you can try it out easily (after you sign up for an account :slight_smile:

The Rails part is pretty straightforward (User table, authentication client). Most of the WebRTC hard stuff is in our Javascript API. This way you focus on the pages of your app and we take care of the real-time and video.

Here is some code

https://github.com/sightcall/Communicator

Here is an intro