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
First, thanks for putting this together. It has been very helpful in learning about how to tackle getting a pre-encoded stream over WebRTC.
I was able to fully build the libraries and example applications with your patches, and was successful in streaming the sample big buck clip to firefox, but can't seem to achieve the same result in Chrome. At first, I thought it might have to do with insecure origins issues, but from what I've read, I was under the understanding that Chrome is supposed to treat localhost as a secure origin?
Using Chrome 66 on Ubuntu 17.10
Steps:
Run peerconnection_server
Host the WebClient directory with the Python SimpleHTTPServer on localhost
Open up the web client and click Sign In
Run peerconnection_client --video_url big_buck_bunny_4s.264
Both peers can see each other at this point
Click the call button in the client
Web client receives several ICE candidates, but doesn't seem to establish a connection to any of them.
Any ideas?
The text was updated successfully, but these errors were encountered:
I faced the same issue. The problem seems to be in mediaConstraints in Web_Client/main.js. I changed the mediaConstraints to {mandatory:{'OfferToReceiveAudio': false, 'OfferToReceiveVideo': true}} and it worked in chrome.
My firefox version is 64.0 and it works if you enable h264decoder. Go to about:config and search "media.navigator.mediadatadecoder_h264_enabled". Set the value as true and check if it works.
First, thanks for putting this together. It has been very helpful in learning about how to tackle getting a pre-encoded stream over WebRTC.
I was able to fully build the libraries and example applications with your patches, and was successful in streaming the sample big buck clip to firefox, but can't seem to achieve the same result in Chrome. At first, I thought it might have to do with insecure origins issues, but from what I've read, I was under the understanding that Chrome is supposed to treat localhost as a secure origin?
Using Chrome 66 on Ubuntu 17.10
Steps:
Any ideas?
The text was updated successfully, but these errors were encountered: