I'm using Twilio Video API and just wants audio call. I passed this constraint below however, the webcam is still appearing on the invited person. It seems the constraint only works for the one who created the conversation.
Is it possible to force all clients under the conversation to disable video by default?
var options = {
localStreamConstraints: { video: false, audio: true }
};
TwilioConversationsClient.inviteToConversation(inviteTo, options).then(conversationStarted, function (error) {
console.error('Unable to create conversation', error);
});
Also, is it possible for browser to ask for microphone only for permissions when only audio is activated? It's weird for it to be asking both microphone and camera if it's only an audio call.
Thanks for the guidance.