Skip to content Skip to sidebar Skip to footer

Node Tutorial One To Many Has No Loading The Remote Server Stream Spinner Moving Endless

I am new to using Kurrento required in project , but as i clone the tutorial given on git hub for Kurento and following the instruction for one2Many call . First of all there is br

Solution 1:

I installed kurento on a different ubuntu machine and its worked for me , i follow the following steps:-

I upgrade my dist by

apt-get dist-upgrade

But be careful before upgrading your dist because it will upgrade distribution and after that some of your app might not work .

And then install

sudo apt-get install libglib2.0-0

after that i install kurento

sudo apt-get install kurento-media-server-6.0

after that i explicitly install openJdk7

And finally its worked for me . But after that some of my app are not worked on my machine like skype etc so as i installed dependencies for those than kurento remote side stream issue is coming again so finally i remove everything from that machine and run only kurento and no doubt thats working fine!

Thanks


Solution 2:

I had a same problem. I have KMS running inside a docker container on port 8888 and 8433 (wss).

if I run the example by "npm start -- --ws_uri=ws://192.168.99.100:8888/kurento", then it will be ok.

But, if I run it with "npm start -- --ws_uri=wss://192.168.99.100:8433/kurento", then I had the problem as same as yours. And, the reason is that on node app I did not force it accept self-signed certificate from MKS. See https://github.com/coolaj86/node-ssl-root-cas/wiki/Painless-Self-Signed-Certificates-in-node.js

Thanks, Bao


Solution 3:

As I can see in your screenshot, you are using a external server, ie. not everything is localhost.

In this case you may need to configure STUN/TURN depending on the network topology. See this link for more information.


Solution 4:

I had the same problem: console logged "reconnecting to server ... undefined" and the stream spinner in browser moved endlessly. Luckily mine problem was simple. I forgot to run the KMS after the reboot with the following command:

sudo service kurento-media-server-6.0 start

Post a Comment for "Node Tutorial One To Many Has No Loading The Remote Server Stream Spinner Moving Endless"