zaycev New Member Tuesday at 8:57 AM #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 Tuesday at 3:40 PM #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: Tuesday at 11:29 PM
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}; ... }