Home > Mobile >  Ask only for Mic permission Opentok
Ask only for Mic permission Opentok

Time:12-05

I'm using OpenTok RTC. And I need to only grant permission for Mic only.

I have been reading the documentations and I'm using the getDevices which asks for camera and mic permissions. And I only need Mic permission

I can't find a way around this yet

Link for getDevices here

CodePudding user response:

OpenTok RTC provides two methods for granting permissions for microphone access. The first is using the JavaScript API when you create the session. You can set the media mode to "audio-only" which will only grant access to the microphone. The second is using the Android/iOS SDK. When the session is created, you can set the AudioTrackConstraints to "AudioTrackConstraints.audioOnly()" which will also only grant access to the microphone.

CodePudding user response:

For anyone who might encounter this, set videoSource to false when initializing a publisher.

link for reference https://tokbox.com/developer/sdks/js/reference/OT.html#initPublisher

  • Related