-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multi user chat : is that possible ? #24
Comments
Hi @yarekc there is no actual limit to endpoints - the limit of 6 is artificial and more based on the resources that the endpoints can deal with. That's particularly problematic with video because of the large amounts of data, but less so with text chat. If you want a video chat application with many endpoints, you need to install a media server (MCU or SFU). |
My idea was rather to use a chrome or chromium on server side as relay without using complex sfu servers |
Chromium is not a forwarding server. All you get by running it in the cloud is another endpoint. You'd have to implement SFU functionality in JS. If that's your goal, sure. Rtc.io is not helping with that. [sorry about the earlier autocomplete typos] |
yes I know it is not a SFU server. However, it looks like it is possible nowdays to relay peers. So de factor, it can play a SFU role, well I believe it. |
Hmm, maybe try https://github.com/versatica/mediasoup ? |
Yes: I already did as well as Janus or Kurento... and I realized that maybe any browser can do what these servers do: simply relay a peer : (that will kill performer if we have 100 users) why not have so remote chrome acts as simply relay between performer and users (sorry for the underline but these comments do not accept SPACE or TABs) |
Does it relay streams ?
My goal is to create some video chat application with 20 users: and webrtc seems to have limits to 6 beacuse of its peer2peer technology.
The text was updated successfully, but these errors were encountered: