2

I am using https://github.com/twilio/video-quickstart-js to run a video conference project. I want to allow users to join without a camera. So, they can only use a mic.

With Twilio video conference, user can join video conferences without a camera?

MERN
  • 2,842
  • 6
  • 13
  • 34

1 Answers1

3

According to the API docs this should be possible by setting video = false in the connect options, see the twilio-video documentation.

In the quickstart example you're using you should overwrite it in the const connectOptions in index.js here.

yvesonline
  • 3,583
  • 2
  • 15
  • 26