Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

WebRTC Codelab not working on firefox beta and developers edition

  • 2 trả lời
  • 1 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi Dr.NO

more options

Neither codelab(https://bitbucket.org/webrtc/codelab) or my webrtc example(https://drive.google.com/folderview?id=0B-0S2tp3jVroVlZKMHNYdG5MUDQ&usp=drive_web) works on firefox beta or developers edition. In the console it gives ICE Error. But both of them works in chromium, chrome and firefox v31.0

Neither codelab(https://bitbucket.org/webrtc/codelab) or my webrtc example(https://drive.google.com/folderview?id=0B-0S2tp3jVroVlZKMHNYdG5MUDQ&usp=drive_web) works on firefox beta or developers edition. In the console it gives ICE Error. But both of them works in chromium, chrome and firefox v31.0

Tất cả các câu trả lời (2)

more options

Do you have the version of Beta that this was tested on? This will help identify where this stopped working, also have you opened up an issue with the codelab as well?

more options

The more recent versions of Firefox implement full trickle ICE. This means the offerer will get ICE candidates right after creating the offer. But on the answerer side Firefox will only allow you to add ICE candidates after setRemoteDescription() has been called. From briefly looking at the code in codelab and the Google Drive you provide I think both might either drop early ICE candidates completely or try to add them before setRemoteDescription was called. In both cases the connection most likely won't get established as ICE candidates will be missing.