Skip to content
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

Running video-conferencing without firebase #27

Open
6Beaufort opened this issue May 11, 2013 · 4 comments
Open

Running video-conferencing without firebase #27

6Beaufort opened this issue May 11, 2013 · 4 comments

Comments

@6Beaufort
Copy link

Hi Muaz,

I am trying to run your video-conferencing example and replace Firebase with my local node.js server. As your example makes use of the Firebase API I am wondering whether you have already a node.js wrapper around socket.io that will run with the video-conferencing example?

I saw your other experiments with socket.io and node.js but that doesn't seem to provide a suitable implementation for the API.

Thanks in advance
Mumin

@muaz-khan
Copy link
Owner

Primary focus of my experiments is multi-users connectivity; which causes reusability and results a dynamic nature.

Because everything is dynamic; that's why my experiments' main requirement is dynamic channels or in simple words dynamic namespaces.

So, what’s the easiest and most suitable solution to write dynamic namespaces in socket.io over node.js?

I know signaler.js is not well written; do you know any other better solution?

I know signaling implemented in my all experiments are hard to understand because of their complex implementations. A lot people complained about it. But I don’t know how and what is the easiest method of writing signaling code?

Did you try this? It is using my own socket.io over node.js implementation. Source code of the demo available here.

@6Beaufort
Copy link
Author

Thanks Muaz for pointing me to the subdirectory using socket.io and node. These examples do work for me now.
I have simplified signaler.js a little by using express and standard socket.io.

BTW, the file transmission via WebRTC is extremely slow with all these small chunks. Is there a way to accelerate that by larger chunks or is it a principal problem with this standard?

@muaz-khan
Copy link
Owner

RTP i.e. unreliable unordered UDP-like data channels are implemented on chrome; where some big issues are:

  1. Multi-channels ignorance
  2. Single message's length (about 1200-to-1400 chars)
  3. Non-Binary type

etc..

Chrome ignores longer or non-compatible messages. That’s why objects like FileReceiver, FileSender, TextReceiver and TextSender are used to support it a little bit.

@imomin
Copy link

imomin commented Jun 2, 2013

Muaz,
What do you think about this? #38 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants