You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So we have an app extended upon from the demo app. 1:1 only. Needs to show user video and screen share from 1 user.
is there a good way to send 2 videos stream from 1 user? currently we had to modify the webrtc.io framework so it was instance based (cleaner approach so global dom not smeared) and then have multiple connections.
var rtc = new WebRTCIO().rtc;
var screenShareConnection = new WebRTCIO().rtc;
So we have an app extended upon from the demo app. 1:1 only. Needs to show user video and screen share from 1 user.
is there a good way to send 2 videos stream from 1 user? currently we had to modify the webrtc.io framework so it was instance based (cleaner approach so global dom not smeared) and then have multiple connections.
var rtc = new WebRTCIO().rtc;
var screenShareConnection = new WebRTCIO().rtc;
screenShareConnection.connect("ws:" + urlc, room + "_screen");
rtc.connect("ws:" + urlc, room);
The text was updated successfully, but these errors were encountered: