rtcmulticonnection

RTCMultiConnection with ionic 5 full example

我是研究僧i 提交于 2020-07-23 07:34:54
问题 Everything is tried but not able to find any solution. please provide the working example with ionic 5 回答1: Working in Android Create the IONIC project ionic start myApp blank In Index.html add two scripts <script src="https://rtcmulticonnection.herokuapp.com/dist/RTCMultiConnection.min.js"></script> <script src="https://rtcmulticonnection.herokuapp.com/socket.io/socket.io.js"></script> add two Cordova plugin https://github.com/patwaswapnil/cordova-opentok-android-permissions ionic cordova

RTCMultiConnection with ionic 5 full example

巧了我就是萌 提交于 2020-07-23 07:33:11
问题 Everything is tried but not able to find any solution. please provide the working example with ionic 5 回答1: Working in Android Create the IONIC project ionic start myApp blank In Index.html add two scripts <script src="https://rtcmulticonnection.herokuapp.com/dist/RTCMultiConnection.min.js"></script> <script src="https://rtcmulticonnection.herokuapp.com/socket.io/socket.io.js"></script> add two Cordova plugin https://github.com/patwaswapnil/cordova-opentok-android-permissions ionic cordova

Share screen in Firefox using RTCMultiConnection

孤街醉人 提交于 2019-12-24 08:13:08
问题 I'm using RTCMultiConnection library in a project I'm working on and I'm facing a problem. When I tried to share my screen in Firefox (63.0.3 Version), it works for some application window, at the same time some application window just show a black screen instead of actual content(like Chrome and Teams). Also, is it possible to share full desktop instead of single application window in Firefox? 回答1: There's a new standard API available for this: getDisplayMedia. Unfortunately, it isn't

RTCMulticonnection initiator no camera

独自空忆成欢 提交于 2019-12-11 18:11:15
问题 I need some help please if the initiator of the room has no camera,I want the joiner that has both audio and camera to be used. but the problem is that I set to false to video mediacontstraints. now the joiner will only have the audio the camera is gone what I want is audio and video for the joiner. @Muaz Khan - RTCMultiConnection.js var initiator = new RTCMultiConnection(); initiator.socketURL = 'url here'; initiator.session = { audio: true, video:false, }; initiator.mediaConstraints = {

MediaStream Unhandled Promise Rejection: [object DOMError] (in Safari 11)

一笑奈何 提交于 2019-12-07 08:23:46
问题 I am getting an Unhandled Promise Rejection in Safari Tech Preview 11 in my method below to initialize WebRTC. Specifically, it occurs when I assign the MediaStream to the video element like this: video.srcObject = event.stream; - the stack trace shows that this line is the one that threw the exception. I have not been able to catch the exception using try/catch. The exception is only occurring in Safari 11 (does not occur in Chrome). Here is the method: initWebRTC(p){ var self = this; return

MediaStream Unhandled Promise Rejection: [object DOMError] (in Safari 11)

末鹿安然 提交于 2019-12-05 17:47:42
I am getting an Unhandled Promise Rejection in Safari Tech Preview 11 in my method below to initialize WebRTC. Specifically, it occurs when I assign the MediaStream to the video element like this: video.srcObject = event.stream; - the stack trace shows that this line is the one that threw the exception. I have not been able to catch the exception using try/catch. The exception is only occurring in Safari 11 (does not occur in Chrome). Here is the method: initWebRTC(p){ var self = this; return new Promise((resolve, reject) => { self.state.connection = new RTCMultiConnection(); self.state