Ashwin
Ashwin

Reputation: 3

Steps to implement - One to One Video call App using Twilio

Can Anyone please let me know how we can do a one to one video calling app using twilio.

I could get some sample codes to do a group video chat, but my requirement is particular to have it one to one, please guide if there is any way to do it using twilio.

Upvotes: 0

Views: 1088

Answers (3)

Animesh
Animesh

Reputation: 486

You can set the room limit to 2, when making the multi-party video app using Video Room. Second option is to use WebRTC as mention above, here is the guide of making such app using NodeJS by twilio.

Upvotes: 1

Harsh Kumar
Harsh Kumar

Reputation: 21

You can easily build a video calling app with the help of Twilio WebRTC Go, and WebRTC Go rooms have default max participants set at 2.

To know more about how to set "max participants" with Twilio WebRTC you can visit the link here.

To understand more about different type of Video rooms using Twilio, you can also visit this doc.

Upvotes: 1

philnash
philnash

Reputation: 73075

To build a one to one video calling app, you can follow the same steps to build a multiparty group chat, but limit the access to the room to only 2 participants.

Upvotes: 1

Related Questions