Joy.w
Joy.w

Reputation: 47

how to build a video chat with WebRTC?

I want to create a video chat with WebRTC, but i have no idea about this. I need my own WebRTC server to establish a video call from a PC browser to another browser on PC or on android device, how should I do?

Upvotes: 1

Views: 3468

Answers (1)

Rubycon
Rubycon

Reputation: 18346

Luckily we live in 2018 where most of the stuff already implemented. There are bunch of WebRTC Video Chat providers that provide API, SDK and docs for integration.

I used ConnectyCube in many of my applications. They provide WebRTC Video Calling functionality for iOS, Android and Web(JS).

WebRTC features supported:

  • 1-1 video chat
  • Group video chat
  • WebRTC based
  • VP8/H264 video codecs supported
  • Mute/Unmute audio/video stream
  • Switch video input devices (cameras)
  • Video recording

The whole list of supported features

Highly recommend to try something like this and do not waste time on implementing everything from scratch by yourself.

Upvotes: -3

Related Questions