zaycev New Member Nov 19, 2024 #1 mic doesn't work without permission for camera, but i don't use camera. is it possible to call with only mic permission?
mic doesn't work without permission for camera, but i don't use camera. is it possible to call with only mic permission?
Max Administrator Staff member Nov 19, 2024 #2 What is the case and SDK? For Web SDK: 1. Audio only stream publishing From a web camera in a browser via WebRTC - Flashphoner streaming media solutions documentation site docs.flashphoner.com Here you have to pass: Code: constraints: {video: false, audio: true} 2. Audio only SIP calls See demo sample: Phone Min Phone Min https://demo.flashphoner.com/client2/examples/demo/sip/phone/phone.js Code: function call() { var session = Flashphoner.getSessions()[0]; var constraints = {audio: true, video: false}; ... } Last edited: Nov 19, 2024
What is the case and SDK? For Web SDK: 1. Audio only stream publishing From a web camera in a browser via WebRTC - Flashphoner streaming media solutions documentation site docs.flashphoner.com Here you have to pass: Code: constraints: {video: false, audio: true} 2. Audio only SIP calls See demo sample: Phone Min Phone Min https://demo.flashphoner.com/client2/examples/demo/sip/phone/phone.js Code: function call() { var session = Flashphoner.getSessions()[0]; var constraints = {audio: true, video: false}; ... }