muaz-khan / RTCMultiConnection

RTCMultiConnection is a WebRTC JavaScript library for peer-to-peer applications (screen sharing, audio/video conferencing, file sharing, media streaming etc.)
https://muazkhan.com:9001/
MIT License
2.57k stars 1.37k forks source link

videoconference with framework #369

Open abcene opened 7 years ago

abcene commented 7 years ago

hi all, I have integrated the videoconference in my application but my problem is the following: I want users to access the video conference by different url but with a single id, but when I do it does not work. Thanks for your help. ex: (localhost:8080/user/visio/#289304958694 and localhost:8080/admin/visio/#289304958694

muaz-khan commented 7 years ago
var roomid = location.hash.replace('#', '').toLowerCase();

// using v3
connection.openOrJoin(roomid);

// using v2
connection.connect(roomid);
abcene commented 7 years ago

Forgive me but I was wrong ... but it is rather the video conferencing with WebRTC Experiment https://github.com/muaz-khan/WebRTC-Experiment/tree/master/video-conferencing

thanks for your help